<goto> Jump to other point (defined by <label>) in the macro and continue macro execution from this point.


Command Tree:   Macro Flow Control    \  Go to  \  Go to
.
Syntax:   <goto>("Label")
Label
Name of the point to jump to.  For example, <goto>("Section1") jumps to the point <label>("Section1") in the same macro. 
.
.
Example:   <#> This macro shows how to use 'goto' and 'label' commands
<#>
<commands_only_on>

<begloop>(0)

<if>("_vLoopCounter>5")
   <msg>(100,100,"Too many loops...","Message",1)
   <goto>("END")
<endif>

<endloop>

<msg>(100,100,"OK","Message",1)
<label>("END")