AutoHotkey Community

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

All times are UTC [ DST ]




Post new topic Reply to topic  [ 4 posts ] 
Author Message
 Post subject: Wait 1 second
PostPosted: February 4th, 2010, 6:47 pm 
Offline

Joined: November 9th, 2009, 4:24 pm
Posts: 94
I need to press a key "b" and If I keep pressed the "b" key wait 2 seconds and only send 1 time the other "b" key.

So if I press "b" key for 5 seconds, I'll only obtain 3 "b" keys.


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 4th, 2010, 8:40 pm 
Offline

Joined: January 22nd, 2010, 5:50 pm
Posts: 34
Location: Germany
Something like this?
Code:
#singleInstance force

:*:b::
{
    KeyWait, b, T2
    sendInput b
}

Edit: ...or better this way?
Code:
#singleInstance force

:*:b::
{
    sendInput b
    KeyWait, b, T2   
}


HTH

_________________
complx

“Give a man a fish; you have fed him for today. Teach a man to fish; and you have fed him for a lifetime”—Author unknown


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: February 4th, 2010, 11:41 pm 
How about something like this?
Code:
$b::
   If key_down
      Send, b
   Else {
      key_down := True
      Sleep, 2000
   }
Return
   
b up:: key_down := False


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: February 4th, 2010, 11:43 pm 
Offline

Joined: April 8th, 2009, 8:23 pm
Posts: 3036
Location: Rio de Janeiro - RJ - Brasil
Tested and working:
Code:
$b::
  Send, b
  KeyWait, b, T2
Return

_________________
"Read the manual. Read it again. Search the forum.
Try something before asking. Show what you've tried.
"
Image
Antonio França
My stuff: Google Profile


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: Bing [Bot], Google [Bot], Google Feedfetcher, nimda, poserpro, rbrtryn, sjc1000, Yahoo [Bot] and 16 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