Page 1 of 1

How to stop ongoing commands.  Topic is solved

Posted: 21 Jan 2018, 14:20
by AutoKeys
Hi, newbie here. If anyone would be so kind to help me, I'd like to add a stop command to the script below. I don't want it to close the script entirely or be a toggle, I just need it to stop the command flow whenever I press the numpad minus key.
Spoiler

Re: How to stop ongoing commands.

Posted: 21 Jan 2018, 15:07
by Osprey
You could assign a hotkey to either Pause or Reload the script.

Code: Select all

q::Pause

Code: Select all

q::Reload
The difference is that Pause will just pause the script and a second press will un-pause it (so that it resumes where it left off), while Reload will permanently end it and start the script over again fresh. My guess is that you probably want Reload.