Action status and problem with stopping makro

adrion5

New member
Hello,
I have a little problem with my macro. Is it possible to end the macro after successfully clicking on the text, or just to break the loop after successfully clicking on the text? I try to make a macro where the macro waits for the available text, then clicks on it, if they don't try to click every 2 seconds all the time. I had the idea of making two macros. The first one works normally and runs the second one that tries to click on the text, while the first macro would wait for the text to be clicked
in this case, for me, the second macro would not have to terminate its operation . Unfortunately, I find it impossible to stop the first macro like this. Any idea ?
 

Dm114

Well-known member
Hello,
I have a little problem with my macro. Is it possible to end the macro after successfully clicking on the text, or just to break the loop after successfully clicking on the text? I try to make a macro where the macro waits for the available text, then clicks on it, if they don't try to click every 2 seconds all the time. I had the idea of making two macros. The first one works normally and runs the second one that tries to click on the text, while the first macro would wait for the text to be clicked
in this case, for me, the second macro would not have to terminate its operation . Unfortunately, I find it impossible to stop the first macro like this. Any idea ?
You could set a global variable value from macro #2 and fire a trigger on value change in macro #1 that stops it.
 
Top