Posts: 5
Threads: 4
Joined: Jul 2020
Hi. I need to be able to kill a macro and then start it up again.
I can killl another macro using 'shutdown -6 0 "macro"' but I can't find how to start it up again.
Posts: 229
Threads: 22
Joined: Sep 2007
click and drag a macro into the editor
Posts: 81
Threads: 31
Joined: Mar 2015
= start macro without new thread
macroname
= start macro with new thread
mac("macroname")
= start macro with new thread and wait for thread end
int hThread
hThread = mac("macroname"); wait 0 H hThread
= start macro to get values
int i
i = macroname ; wait 5 V i
( wait for 5 seconds to get value "i", if not, errors )
Posts: 5
Threads: 4
Joined: Jul 2020
Thanks for these answers. I have it working now with mac("macroname")