| View previous topic :: View next topic |
| Author |
Message |
cgcaver Guest
|
Posted: Fri Aug 20, 2004 6:42 pm Post subject: Cant seem to figure out how to do a simple delay :( |
|
|
OK im a complete coding noob... the script below does what i want it to do, but I need it to have a 30 second delay between loops. In other words, i want it to perform these actions every 30 secs.... I tried setkeydelay 30000 and setmousedelay 30000 but neither seemed to work... can someone help? maybe i had em in the wrong spot :\
^a::
Loop 2
{
MouseClick, left, 28, 144
MouseClick, left, 630, 315
Send, s
} |
|
| Back to top |
|
 |
Jon
Joined: 28 Apr 2004 Posts: 373
|
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5026 Location: imaginationland
|
Posted: Fri Aug 20, 2004 11:12 pm Post subject: |
|
|
Put in the line:
| Code: | | Sleep, 1000 ;or how many millerseconds you want to delay |
|
|
| Back to top |
|
 |
|