Updated script to scroll in Vista Windows Explorer windows properly

git-svn-id: http://apu.dw.local/svnusers/JoshHoltrop/JoshsAutoHotKey@98 8131a0b2-b21c-1c47-bd6a-f003126495bd
This commit is contained in:
joshholtrop 2009-12-15 21:14:18 +00:00
parent b495e63010
commit 2b718c1003

View File

@ -186,7 +186,7 @@ WinActivate,ahk_id %KDE_id%
; Explorer windows so I can scroll in the "Folders" pane and ; Explorer windows so I can scroll in the "Folders" pane and
; the main pane independently ; the main pane independently
WinGetClass class,ahk_id %KDE_id% WinGetClass class,ahk_id %KDE_id%
if (class = "ExploreWClass") if (class = "ExploreWClass" or class = "CabinetWClass")
{ {
Send {MButton} Send {MButton}
} }
@ -197,7 +197,7 @@ $WheelUp::
MouseGetPos,,,KDE_id MouseGetPos,,,KDE_id
WinActivate,ahk_id %KDE_id% WinActivate,ahk_id %KDE_id%
WinGetClass class,ahk_id %KDE_id% WinGetClass class,ahk_id %KDE_id%
if (class = "ExploreWClass") if (class = "ExploreWClass" or class = "CabinetWClass")
{ {
Send {MButton} Send {MButton}
} }