Compound conditions

When entering compound conditions, you can use a shorthand form for relational and logical operators. For example, the following condition is TRUE if Choice is between 1 and 5:

Long form

Choice > 1 & Choice < 5

Short form

Choice > 1 & < 5

This condition is TRUE if the variable Name contains Jim, james, or James.

Long form Name = "Jim" | Name = "james" | Name = "James"

Short form Name = "Jim" |= "james" |= "James"

See also


 

Send me an e-mail when comments are added to this page | Comment Report

Current page: http://livedocs.adobe.com/authorware/7/using_aw_en/09_var60.htm