Label
Label>Label_Name
Marks a point in the script to allow execution to be passed to that point by the Goto, and If.. commands.
Goto in conjunction with Label, can be used to create infinite loops. Use the If.. commands to cause conditional branching. To break out of infinite loops press Stop, or choose the Break option from the taskbar pop up menu.
See also: Goto, If, IfWindowOpen, IfFileExists, IfFileChanged
Example
Label>Start
..
..
Goto>SecondBit
..
..
Label>SecondBit
..