| View previous topic :: View next topic |
| Author |
Message |
Puzzled Greatly
Joined: 15 Aug 2009 Posts: 274
|
Posted: Sat Jan 30, 2010 11:49 pm Post subject: Hotkeys using tab |
|
|
Hello,
I know #tab uses the windows key and tab as a shortcut and #v uses the windows key and v as a shortcut but how do I make a shortcut using all three keys? #vtab doesn't work.
Thanks,
GP |
|
| Back to top |
|
 |
Ace Coder
Joined: 26 Oct 2009 Posts: 361
|
|
| Back to top |
|
 |
Puzzled Greatly
Joined: 15 Aug 2009 Posts: 274
|
Posted: Sun Jan 31, 2010 10:47 am Post subject: |
|
|
Thanks for the reply, I checked out the thread you linked to and some of the links in that thread but didn't find an answer I could understand!
GP |
|
| Back to top |
|
 |
None
Joined: 28 Nov 2009 Posts: 3086
|
Posted: Sun Jan 31, 2010 5:59 pm Post subject: |
|
|
Auto Hotkey can not directly make a three key hotkey but you can fake it. In this example you have to hold tab first.
| Code: | #v::
If GetKeystate("Tab","p") ;Check if tab key is pressed
{
MsgBox You Pressed Win+v While holdong Tab
}
Return
Tab::Return ;remove this line if you don't mind getting extra tabs |
|
|
| Back to top |
|
 |
|