Reputation: 3
I want the keyboard shortcut ctrl+tab to perform two functions:
It doesn't need to be context-sensitive, i.e., it's okay to send both commands regardless of what program(s) I am using. The closest I have come is the following:
~^Tab::^F6
which performs both of the desired functions, but a "Tab" keystroke is also sent along with the hotkey. (This would wreak havoc on my Word documents!) I need to preserve the native ctrl+tab functionality without sending a Tab keystroke. Could someone please help?
Upvotes: 0
Views: 215
Reputation:
Then just send both commands:
$^Tab::
Send, ^{F6}
sleep,50
Send, ^{Tab}
return
Just note that some programs might not like that.
Upvotes: 1