How to pause until macro is finished?

So within macro A, i trigger another macro by keystroke ( call it macro B) and I want to pause until macro B is finished before proceeding

I tried to do

Macro A
-Enable Macro B
-Trigger Macro B By Keystroke
-Pause until Macro B is disabled

And the last action in macro b is to disable itself.

This was giving me problems, is there a better way to do it?

1 Like

Yes. Instead of calling (triggering) the other macro by hot key, use Execute a Macro action, which will cause the calling macro to wait until the other macro has completed.

4 Likes

Ah, i'm embarrassed for not knowing but the silver lining is the solution is easy, thanks so much!

2 Likes