Hi fellow AHK fans,
I have defined the hotkey combi of CTRL and TAB for one specific program, to go to the next tab (remapping to the regular keys for that program).
Likewise I would like to define the combi of SHIFT, CTRL and TAB to go to the previous tab.
This is what I have coded:
Code:
#IfWinActive, ahk_class ATL:ExplorerFrame
^Tab::^!Right ; Xplorer2 / output Control+Alt+Right when pressing Control+Tab
+^Tab::^!Left ; Xplorer2 / output Control+Alt+Left when pressing Shift+Control+Tab (doesn't work)
#IfWinActive
However, the last hotkey combi doesn't work. In fact, if I change the action to for example a MsgBox, the msgbox doesn't popup either. It seems that the hotkey combi may not even get thru right...
Anyone has an idea what could be wrong here? Thanks for any help!
Greetings,
Marc