|
IF statement |
Top Previous Next |
If the specified expressions returns TRUE, then the command after "then" is executed, otherwise the script continues with the next line.
<expression> can have the following format:
Operand1 and Operand2 can be numbers, strings, variables or the result of a built-in function.
Example 1: Jump to the label "noUpdate" when no updated bookmarks are available.
Example 2: Display a question box and perform different actions, dependent from the button that has been clicked.
Example 3: Loop with 10 iterations.
|