10-18-2015, 07:55 AM
Usually don't need to run another macro. Convert it to function (in Properties dialog) and call:
But if want to run the macros in another thread and wait, use this:
And in Properties either convert them to functions or select "Run simultaneously". Don't need it if this script itself is a function or a run-simultaneously macro.
My_Macro_Name_1 ;;call function "My_Macro_Name_1" that is converted from macro "My Macro Name 1"
int w=win("Microsoft Excel")
My_Macro_Name_2
But if want to run the macros in another thread and wait, use this:
And in Properties either convert them to functions or select "Run simultaneously". Don't need it if this script itself is a function or a run-simultaneously macro.