Else If flag false

20% Command group 20% Flag affected 20% Reversible 20% Execute on client 20% Platform(s)
Constructs NO NO YES All

Syntax

Else If flag false

Description

This command is used after an If statement and provides a marker before a series of commands that have to be carried out if the flag is false.

Example

# In the example below, the value of lGender is tested against the condition
# false if cancel if pressed.
Prompt for input Please enter your nam Returns lName (Cancel button)
If flag true
  OK message {Your name is [lName]}
Else If flag false ## cancel button pressed
  OK message {No name entered}
End If