GoTo

Top  Previous  Next

S

A

W

WS

ü

ü

The following commands have been implemented in EMUEScript exactly as they are implemented in OLIE™:

 

Syntax -

GoTo <label>

       Where:

       <label> is a literal string or a variable containing a literal string

 

Description:

This command changes the current execution of the script so that the next line that is processed is the line following the label specified by <label>.  Labels are marked with a colon in front of their name.

 

Sample:

       The following statement uses the GoTo command to go to the label called ReadFile.

:ReadFile

'...

'Script Processing

'...

GoTo ReadFile