| View previous topic :: View next topic |
| Author |
Message |
cgcaver Guest
|
Posted: Fri Aug 20, 2004 6:41 pm Post subject: Keystroke to stop an infinite loop? |
|
|
| is there a way to break an infinitely looped script? |
|
| Back to top |
|
 |
BoBo Guest
|
Posted: Fri Aug 20, 2004 7:05 pm Post subject: |
|
|
Ctrl+Alt+Del  |
|
| Back to top |
|
 |
Titan
Joined: 11 Aug 2004 Posts: 5026 Location: imaginationland
|
Posted: Fri Aug 20, 2004 11:02 pm Post subject: This is how... |
|
|
Put this line in the end of your script:
This will make the Escape button on your keyboard stop the whole script. |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Fri Aug 20, 2004 11:57 pm Post subject: |
|
|
In case you don't know, you can also pause or exit the script from its tray menu, even if it's busy (unless it's sending a lot of keystrokes or mouse movements, which might make it hard to get to the tray).
In addition to the Exit hotkey mentioned above, you can also bind a hotkey to pause the script:
^!p::pause ; Ctrl-Alt-P |
|
| Back to top |
|
 |
|