How to configure AutoHotKey for Win-Tab instead of Alt-Tab

autohotkey

AutoHotKey is excellent keyboard customisation and automation utility. I have configured it for Alt-Tab using my mouse:

~MButton & WheelDown::AltTab
~MButton & WheelUp::ShiftAltTab

I am using Windows Vista and instead of using Alt-Tab, I would like to configure the mouse buttons for Win-Tab (Flip-3D). Is there any way to do that?

Best Answer

Clicking the middle button should activate Flip 3D, then scrolling up or down will move the windows accordingly. The problem is that keeping MButton and MWheel up or down mapped to open Flip 3D will cause problems, as every scroll will attempt to relaunch the application (and probably close it) so I removed the MButton part.

~MButton::send ^#{Tab}
WheelDown::send { down 1 }
WheelUp::send { up 1 }
Related Question