Currently I must Ctrl & Tab to perform a traditional AltTab
.
I've already swapped my Alt and Ctrl keys. However, I still want to be able to AltTab
traditionally
This is what I have so far:
LCtrl::Alt
Alt::LCtrl
LCtrl & Tab::AltTab
LCtrl & Tab::Send {Alt Down}{Tab}{Alt Up}
Is the simple answer and will switch between the last 2 open windows.
If you want proper functionality, you'll have to read: http://www.autohotkey.com/docs/commands/GetKeyState.htm and use it in conjuction with
GetKeyState, OutputVar, LCtrl
If OutputVar = "D"
Send {Tab}
etc