Home » Questions » Computers [ Ask a new question ]

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

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

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

Asked by: Guest | Views: 440
Total answers/comments: 1
bert [Entry]

"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 }"