| View previous topic :: View next topic |
| Author |
Message |
ripcurl711711
Joined: 06 Nov 2009 Posts: 1
|
Posted: Fri Nov 06, 2009 4:03 pm Post subject: How to do a action mulitple times (ie Enter 34 time in a row |
|
|
I'm trying to simplify some of my script. How would I do something like hit enter multiple times in a row? I'm thinking it will look something like {{ENTER}x34}. Am I even close?
Thanks! |
|
| Back to top |
|
 |
hugov
Joined: 27 May 2007 Posts: 2181
|
|
| Back to top |
|
 |
rtcvb32
Joined: 17 Feb 2008 Posts: 125
|
Posted: Fri Nov 06, 2009 4:08 pm Post subject: |
|
|
http://www.autohotkey.com/docs/commands/Send.htm
Excerpt:
To repeat a keystroke: Enclose in braces the name of the key followed by the number of times to repeat it. For example:
| Code: | | Send {DEL 4} ; Presses the Delete key 4 times. |
|
|
| Back to top |
|
 |
|