AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Hotkeys using tab

 
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
Puzzled Greatly



Joined: 15 Aug 2009
Posts: 274

PostPosted: Sat Jan 30, 2010 11:49 pm    Post subject: Hotkeys using tab Reply with quote

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
View user's profile Send private message
Ace Coder



Joined: 26 Oct 2009
Posts: 361

PostPosted: Sun Jan 31, 2010 6:14 am    Post subject: Reply with quote

http://www.autohotkey.com/forum/viewtopic.php?t=50021 may be helpful.
_________________
Check out the new AHK forum competition!
Back to top
View user's profile Send private message
Puzzled Greatly



Joined: 15 Aug 2009
Posts: 274

PostPosted: Sun Jan 31, 2010 10:47 am    Post subject: Reply with quote

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
View user's profile Send private message
None



Joined: 28 Nov 2009
Posts: 3086

PostPosted: Sun Jan 31, 2010 5:59 pm    Post subject: Reply with quote

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
View user's profile Send private message
Display posts from previous:   
Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group