Code: Select all
sub main
/doevents
/if somthing==somthingesle {
/macro mymacro.mac
/return
am i wrong in thing this should start new macro
Moderator: MacroQuest Developers
Code: Select all
sub main
/doevents
/if somthing==somthingesle {
/macro mymacro.mac
/return
Code: Select all
#Include mymacro.mac
sub main
:begining
/doevents
/if somthing==somthingesle {
/call mymacro
}
/goto :begining
/return 