I'm trying to code a button (rainmeter) that runs an AHK script for alt+tab to prompt the Task Window and ends when I pick one. So far I've come up with this:
#NoTrayIcon
#InstallKeybdHook
#InstallMouseHook
Send, !{Tab}
KeyIsDown :=
GetKeyState (LButton,P)
return
ifEqual, KeyIsDown, 1
Exit