AutoHotkey Community

It is currently May 27th, 2012, 2:03 am

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: Hotkeys using tab
PostPosted: January 31st, 2010, 12:49 am 
Offline

Joined: August 15th, 2009, 7:20 am
Posts: 308
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 31st, 2010, 7:14 am 
Offline

Joined: October 26th, 2009, 6:29 am
Posts: 362
http://www.autohotkey.com/forum/viewtopic.php?t=50021 may be helpful.

_________________
Check out the new AHK forum competition!


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 31st, 2010, 11:47 am 
Offline

Joined: August 15th, 2009, 7:20 am
Posts: 308
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


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: January 31st, 2010, 6:59 pm 
Offline

Joined: November 28th, 2009, 4:45 am
Posts: 3089
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


Report this post
Top
 Profile  
Reply with quote  
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 4 posts ] 

All times are UTC [ DST ]


Who is online

Users browsing this forum: Apollo, engunneer, Google Feedfetcher, nimda, rbrtryn, sjc1000 and 15 guests


You can post new topics in this forum
You can reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Powered by phpBB® Forum Software © phpBB Group