Simple conditional structure
- Last UpdatedJul 23, 2024
- 1 minute read
The following script shows a simple conditional structure. If SuccessTag is TRUE, the "Success" window opens, otherwise the "Failure" window opens.
IF SuccessTag == 1 THEN
Show "Success";
ELSE
Show "Failure";
ENDIF;