I keep getting the Branching out of a Subroutine is not recommended popup, although it simply goes to another label inside of the subroutine.
Any ideas how to either disable this error, or get around it?
I just recently updated from Macro Scheduler 10 and it didn't have this problem. 12 is kicking out a lot of my old macros and this one I can't figure out.
Thanks,
Andrew
Branching out of a Subroutine Error
Moderators: JRL, Dorian (MJT support)
Look in the help file for SkipLabel
See the following example
See the following example
Code: Select all
GoSub>DoNotDoThis
GoSub>DoThisInstead
SRT>DoNotDoThis
Let>a=1
Let>b=2
If>a=1
Goto>Exit
Endif
END>DoNotDoThis
SRT>DoThisInstead
Let>a=1
Let>b=2
If>a=1
SkipLabel>Exit
Endif
END>DoThisInstead
Label>Exit