<label> Specifies the point in the macro where you can jump using <goto> command.
Command Tree: | Macro Flow Control \ Go to \ Label | ||||
. | |||||
Syntax: | <label>("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") |