Conditional Expressions

Conditional expressions are just like other expressions, but their results are interpreted as Boolean (true/false) values. In other words, the result of a conditional expression is always either true or false.

You can use conditional expressions to build a level of intelligence into your AutoPlay application, making it respond in different ways to the various situations it encounters "in the field." For example, conditional expressions allow you to make blocks of actions optional, so the actions are only performed when the conditions that you set are met at run time.

Examples:

%Age% > 13

-

(??)

 

(%FirstName% = "Matt") or (%FirstName% = "Sandy")

-

(??)

 

%ButtonPressed%

-

(??)

You can use conditional expressions in IF and WHILE actions.

Next: Values