<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")
|
||||
. | |||||
. | |||||
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") |