AutoHotkey Community

It is currently May 27th, 2012, 1:06 pm

All times are UTC [ DST ]




Post new topic Reply to topic  [ 3 posts ] 
Author Message
 Post subject: Keywait problems
PostPosted: April 8th, 2008, 8:08 pm 
I want the end key to click, then wait for the enter key to be pressed, click again and then wait for enter again and click a third time

I want it kind of like when programs say press enter to countinue, I want the script to pause until I press enter before clicking again, but I don't want the enter key to be a permanent hotkey for clicking.

The way I have it now, it just clicks 3 times really fast. Before I was using sleep between the clicks, but the delay is variable so sometimes the Sleep would be too short, and sometimes too long.

Current setup:

end::
click 947,352

KeyWait, enter
click 356,532

KeyWait, enter
click 947,352

return

old setup, using sleep:

end::
click 947,352

Sleep 1000
click 356,532

Sleep 1000
click 947,352

return


Report this post
Top
  
Reply with quote  
 Post subject:
PostPosted: April 8th, 2008, 8:39 pm 
Offline

Joined: November 5th, 2007, 7:25 pm
Posts: 454
Location: canada
this is not really the answer your looking for more then likely but you can try

Code:

Input [, OutputVar, Options, EndKeys, MatchList]

example

Input, SingleKey, T3 L1 V,
;waits 3 seconds for you to push any single key.


it would work

_________________
-=Raz=-


Report this post
Top
 Profile  
Reply with quote  
 Post subject:
PostPosted: April 8th, 2008, 9:06 pm 
Offline

Joined: September 7th, 2006, 10:42 am
Posts: 65
Code:
end::
click 947,352
KeyWait, enter, D
click 356,532
KeyWait, enter

KeyWait, enter, D
click 947,352
return


KeyWait, enter, D <- waits for it to be pressed
KeyWait, enter <- waits for it to be released


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

All times are UTC [ DST ]


Who is online

Users browsing this forum: Amandaville, Bing [Bot], BrandonHotkey, chaosad and 22 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