Hello,
I've been using a different macro software for while. This software allowed the termination of the macro regardless of what stage it's in. I'm looking for a certain built-in feature in AutoHotKey, or a way to program in the key to abort the macro.
I've seen a couple of threads mentioning the ExitApp function. Although it does really terminate the macro, it will not happen until all lines are executed. Example:
Code:
Esc::ExitApp
^t::
SetKeyDelay, 100
Send Line one{ENTER}
Send Line two{ENTER}
Send Line three
return
I may be using this function inappropriately so if it is the way to go, a short example would be appreciated. The objective is preventing a mess if something unpredictable happens during the execution of a long macro.
Is this possible in any way?
Thanks,
Tom