| View previous topic :: View next topic |
| Author |
Message |
vdongen
Joined: 08 May 2005 Posts: 41 Location: Jakarta, Indonesia
|
Posted: Fri Apr 06, 2007 7:19 am Post subject: Key input amount within loop |
|
|
I want to use the loop function to do a handling several times. Part of the handling is to use the {ENTER} key. I want to use the enter key after every loop one more extra. How to do it?
I use Loop 10
At first: {ENTER}
at second loop: {ENTER 2}
till {ENTER 10}
Bart |
|
| Back to top |
|
 |
nick
Joined: 24 Aug 2005 Posts: 549 Location: Berlin / Germany
|
Posted: Fri Apr 06, 2007 8:51 am Post subject: |
|
|
_________________ nick  |
|
| Back to top |
|
 |
vdongen
Joined: 08 May 2005 Posts: 41 Location: Jakarta, Indonesia
|
Posted: Fri Apr 06, 2007 1:08 pm Post subject: |
|
|
Sorry, I am a new in AHK and the Help file didn't make me progressing. Could you assist me more deeply?
Bart |
|
| Back to top |
|
 |
n-l-i-d Guest
|
Posted: Fri Apr 06, 2007 1:57 pm Post subject: |
|
|
| Code: | Loop, 10
{
Send, {Enter %A_Index%}
} |
|
|
| Back to top |
|
 |
|