WaitForTextGoTo

Top  Previous  Next

×V3.1.8Ø

S

A

W

WS

ü

ü

Syntax -

       WaitForTextGoTo <LabelName> <TimeOut> <Text> <Row> <Column>

       Where:

<LabelName> is where the script should go to if the indicated text is found.

<TimeOut> is a numeric value.

<Text> is a literal string or a variable containing a literal string.

<Row> is a numeric value or a variable containing a numeric value.

<Column> is a numeric value or a variable containing a numeric value.

       

Description:

This command is used to stop the processing of the script until either the number of seconds defined in <TimeOut> is exceeded, or if the text defined in <Text> is found.   If the time limit is exceeded or the text specified does not exist, EMUE resumes the processing of the script at the label specified in <LabelName>.

 

Sample:

The following statement will look over the entire screen for the text "Financial Transactions" and if not found after 10 seconds will transfer control of the script to the label "Commit".

WaitForTextGoTo Commit 10 "Financial Transactions" *