Label and Goto
Label <identifier>
// and
Goto <identifier>
Label marks a position in the Script with the specified identifier. It is used as the target for the Goto statement.
Goto jumps to the specified label identifier and continues Script execution at that position.
Example:
Label restartLabel
CheckBookmarks /all
WaitDelay 10
Goto restartLabel