Control Structure - ELSE

Marks the beginning of an ELSE block. This essentially splits an IF block into two halves: the half that gets executed if the IF action's condition is true, and the half that gets executed if the IF action's condition is false. (The ELSE is what marks the beginning of this second half.)

Action ID:
Action Category:
Action List Syntax:

206
Control Structure
ELSE

Settings

None

Notes

If the condition in the corresponding IF action evaluates to true, all of the actions between the IF and this ELSE will be performed.

If the condition in the corresponding IF action evaluates to false, all of the actions between this ELSE and the corresponding END IF will be performed.

Error Codes

Value
(%LastErrorNum%)

Simple Message
(%LastErrorMsg%)

Verbose Message
(%LastErrorDetails%)

0 (OK)

 

 

Examples

Adding an item to a delimited string

Opening a web page in the user's default browser

Pausing an MP3

Playing an AVI

Storing information in the Registry

Verifying a password (advanced)