|
|
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| 12 Dec 2014 | #141 |
|
|
Also I wonder if it possible to get rid of the ModernUI completely. I heard the Wi-Fi dialog is Modern UI based and also the "open with" dialog. I wonder whether it is true. |
| My System Specs |
| . |
|
|
| 12 Dec 2014 | #142 |
|
|
Getting rid of the Modern UI completely is something I'm still trying to do. |
| My System Specs |
| 13 Dec 2014 | #143 |
|
|
Quote:
Both those things are true, but I use alternatives. For the 'open with' dialog, I use OpenWith Enhanced, and for the network dialog I use PE Network Manager.
|
| My System Specs |
| . |
|
|
| 13 Dec 2014 | #144 |
|
|
Very true. But OpenWith Enhanced does imitate the Windows 7 Open With dialog, so you wouldn't be missing it in Windows 8.
|
| My System Specs |
| 14 Dec 2014 | #145 |
|
|
Taskbar placement fixer (fixeds the 1-px off issue):
Code:
#NoEnv
#NoTrayIcon
SetControlDelay, -1
Gui +LastFound
hWnd := WinExist()
Sleep, 5000
;WinGet, id,, ahk_class Shell_TrayWnd
WinGetPos,,,ww,wh, % "ahk_id " id
ControlMove, ReBarWindow321,,4,,, % "ahk_id " id
ControlGetPos, ,y,,h,ReBarWindow321, % "ahk_id " id
ControlMove, TrayNotifyWnd1,,4,,h-4, % "ahk_id " id
WinSet, Redraw,, % "ahk_id " id
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
ShellMessage(wParam,lParam) {
If (wParam = 1 or wParam = 2) ; HSHELL_WINDOWCREATED := 1
{
;WinGetClass, WinClass, ahk_id %lParam%
WinGet, lParam,, ahk_class Shell_TrayWnd
WinGetPos,,,ww,wh, % "ahk_id " ahk_id %lParam%
ControlMove, ReBarWindow321,,4,,, ahk_id %lParam%
ControlGetPos, ,y,,h,ReBarWindow321, ahk_id %lParam%
ControlMove, TrayNotifyWnd1,,4,,h-2, ahk_id %lParam%
WinSet, Redraw,, ahk_id %lParam%
}
}
|
| My System Specs |
| 15 Dec 2014 | #146 |
|
|
Oh, thank you so much, Anixx. That's been bugging me so much.
|
| My System Specs |
| 18 Apr 2015 | #147 |
|
|
This script removes the address bar more reliably:
Code:
#NoEnv
#NoTrayIcon
SetControlDelay, -1
Gui +LastFound
hWnd := WinExist()
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
ShellMessage(wParam, lParam) {
If (wParam = 1) ; HSHELL_WINDOWCREATED := 1
{
WinGetClass, WinClass, ahk_id %lParam%
if (WinClass = "CabinetWClass") {
SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%
WinGetClass, WinClass, ahk_id %lParam%
ControlGetPos, ,y1,,ha,ReBarWindow321, ahk_id %lParam%
Control, Hide,, WorkerW1, ahk_id %lParam%
Control, Hide,, ReBarWindow321, ahk_id %lParam%
SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%
ControlGetPos,,y2,,h1,ShellTabWindowClass1, ahk_id %lParam%
ControlMove, ShellTabWindowClass1,, y1,,(y2-y1)+h1, ahk_id %lParam%
ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%
WinSet, Redraw,, ahk_id %lParam%
Sleep, 100
ControlGetPos, ,y1,,ha,ReBarWindow321, ahk_id %lParam%
Control, Hide,, WorkerW1, ahk_id %lParam%
Control, Hide,, ReBarWindow321, ahk_id %lParam%
SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%
ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%
WinSet, Redraw,, ahk_id %lParam%
Sleep, 100
ControlGetPos, ,y1,,ha,ReBarWindow321, ahk_id %lParam%
Control, Hide,, WorkerW1, ahk_id %lParam%
Control, Hide,, ReBarWindow321, ahk_id %lParam%
SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%
ControlMove, ShellTabWindowClass1,, y1,,(y2-y1)+h1, ahk_id %lParam%
ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%
WinSet, Redraw,, ahk_id %lParam%
;WinGetPos, , , , h, ahk_id %lParam%
;WinMove, ahk_id %lParam%,,,,,h-1
;WinMove, ahk_id %lParam%,,,,,h
}
}
}
|
| My System Specs |
| 21 Apr 2015 | #148 |
|
|
This script removes the address bar more reliably:
Code:
#NoEnv
#NoTrayIcon
SetControlDelay, -1
Gui +LastFound
hWnd := WinExist()
DllCall( "RegisterShellHookWindow", UInt,hWnd )
MsgNum := DllCall( "RegisterWindowMessage", Str,"SHELLHOOK" )
OnMessage( MsgNum, "ShellMessage" )
Return
ShellMessage(wParam, lParam) {
If (wParam = 1) ; HSHELL_WINDOWCREATED := 1
{
WinGetClass, WinClass, ahk_id %lParam%
if (WinClass = "CabinetWClass") {
SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%
WinGetClass, WinClass, ahk_id %lParam%
ControlGetPos, ,y1,,ha,ReBarWindow321, ahk_id %lParam%
Control, Hide,, WorkerW1, ahk_id %lParam%
Control, Hide,, ReBarWindow321, ahk_id %lParam%
SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%
ControlGetPos,,y2,,h1,ShellTabWindowClass1, ahk_id %lParam%
ControlMove, ShellTabWindowClass1,, y1,,(y2-y1)+h1, ahk_id %lParam%
ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%
WinSet, Redraw,, ahk_id %lParam%
Sleep, 100
ControlGetPos, ,y1,,ha,ReBarWindow321, ahk_id %lParam%
Control, Hide,, WorkerW1, ahk_id %lParam%
Control, Hide,, ReBarWindow321, ahk_id %lParam%
SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%
ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%
WinSet, Redraw,, ahk_id %lParam%
Sleep, 100
ControlGetPos, ,y1,,ha,ReBarWindow321, ahk_id %lParam%
Control, Hide,, WorkerW1, ahk_id %lParam%
Control, Hide,, ReBarWindow321, ahk_id %lParam%
SendMessage, 0x0082,,,ReBarWindow321, ahk_id %lParam%
ControlMove, ShellTabWindowClass1,, y1,,(y2-y1)+h1, ahk_id %lParam%
ControlMove, ReBarWindow321,,,,0, ahk_id %lParam%
WinSet, Redraw,, ahk_id %lParam%
;WinGetPos, , , , h, ahk_id %lParam%
;WinMove, ahk_id %lParam%,,,,,h-1
;WinMove, ahk_id %lParam%,,,,,h
}
}
}
Just out of curiosity, would it be possible to do the same for the ClientEdge AHK script? I honestly haven't really used that in a while, but I've been kind of wanting to use it again. By the way, how's Windows 8 been for you? |
| My System Specs |
| 21 Apr 2015 | #149 |
|
|
[QUOTE=Butters;3050901]
I have also updated the taskbar placement fixer, see the code above. Quote:
By the way, how's Windows 8 been for you?
One additional advantage is the boot choice screen which is now displayed on the external monitor. I use a laptop in a desktop role with an external monitor and under Win7 I had to open the laptop to choose an operating system or a safe mode. Now I can do it without touching it. I also like the default Win8 theme more than Aero (but of course less than the Classic theme). There is a lot of disadwantages though: the system setup (autostart) settings were moved to the task manager which does not work with Classic theme, wi-fi setup also does not work. One annoying problem is thatn occasionally in the Alt+Tab menu appear up to 3 unnamed applications, which cannot be trermanated with the task manager, only reboot helps (seems they appear after enetring sleep mode or mounting drives). But they do not consume mych resources. In all, Win 8 needs more setup. But also I am grad that I got rid of the evil tearing... Here is my desktop: http://storage3.static.itmages.ru/i/...19c12ed5ae.png |
| My System Specs |
| 21 Apr 2015 | #150 |
|
|
It works much faster than Windows 7. I do not know why, actually, maybe because I disabled superfetch. Under Win 7 I experienced constant lags in games, no such problem in Win8. Also in Win7 it took a long time to switch from a full-screen game to the desktop using Alt+Tab, here it is fast. Under Win7 I always had to wait after exiting a game before using Classic Shell menu (it was always swapped) while here I can use the menu immediately. This may be because of disabled Superfetch though.
One additional advantage is the boot choice screen which is now displayed on the external monitor. I use a laptop in a desktop role with an external monitor and under Win7 I had to open the laptop to choose an operating system or a safe mode. Now I can do it without touching it. I also like the default Win8 theme more than Aero (but of course less than the Classic theme). There is a lot of disadwantages though: the system setup (autostart) settings were moved to the task manager which does not work with Classic theme, wi-fi setup also does not work. One annoying problem is thatn occasionally in the Alt+Tab menu appear up to 3 unnamed applications, which cannot be trermanated with the task manager, only reboot helps (seems they appear after enetring sleep mode or mounting drives). But they do not consume mych resources. In all, Win 8 needs more setup. But also I am grad that I got rid of the evil tearing... The autostart settings have also been annoying for me, especially if you're using the classic Task Manager like I am. If you are, you can't even change those settings. But hey, at least the classic Task Manager works with the Classic Theme. As for the unidentified applications in Alt+Tab, yeah I get that too. This happens to me when I'm using the Classic Theme and I wake my computer from sleep mode. Restarting Explorer.exe will remove them. |
| My System Specs |
| Similar help and support threads | ||||
| Thread | Forum | |||
|
Windows Explorer Address Bar disappearing Hi all, I'm a newbie to the forum (Hello!), but not to computers. Even so, I'd be grateful if anyone has any inspiration on a problem that has me stumped. (If the following seems long, please bear with me; I'm just trying to be explicit.) I'm running Windows 7 Home Premium 64bit, + SP1 and... |
General Discussion | |||
|
my windows explorer move with a frame but not the whole explorer when i move my windows explorer with mouse, it move with a frame but not the whole explorer (please see the picture file that I upload). I try to re-install the latest VGA nVidia driver already but still the same. Please help me to overcome this problem, thanks all. |
General Discussion | |||
|
Traditional address bar in Windows explorer How can i activate classic address bar in win 7 Ultimate? I mean, when you press Windows key + E, it opens Windows explorer and i'd like that address bar to work like in Windows Xp. Sorry if this was confusing text, English is not my native tongue |
Customization | |||
|
explorer's address bar dropdown menu (like in XP) when i clicking drop down arrow at the end of the adress bar all i get is completely blank drop-down, with nothing in it at all. in XP clicking that arrow showed a drive/folder list. i need it in '7.. |
General Discussion | |||
|
Windows Explorer address bar Is there a way to delete the paths that are shown when typing in the address bar? I don't want the drop down menu to show where I have been. I have a few typos in some of the path names and it looks like a mess and unorganized. |
Performance & Maintenance | |||
|
Removing the Windows 7 Explorer Address Bar Hello, I'm trying to completely remove the address bar in Windows 7 when exploring files. I've spent the better part of the day looking for a way to do this with no luck. I've found the NoNavBar and the NoAddressBar registry tweaks, but those appear to only work for older versions of windows,... |
General Discussion | |||
| Our Sites |
Site Links |
About Us |
Find Us |
|
Windows 7 Forums is an independent web site and has not been authorized,
sponsored, or otherwise approved by Microsoft Corporation.
"Windows 7" and related materials are trademarks of Microsoft Corp.
© Designer Media Ltd All times are GMT -5. The time now is 06:01. |
|