ActionScript 2.0 Language Reference |
|
|
|
| ActionScript language elements > Operators > and logical AND operator | |||
condition1 and condition2
Deprecated since Flash Player 5. Adobe recommends that you use the logical AND (&&) operator.
Performs a logical AND (&&) operation in Flash Player 4. If both expressions evaluate to true, the entire expression is true.
Availability: ActionScript 1.0; Flash Player 4
condition1 : Boolean - Conditions or expressions that evaluate to true or false.
condition2 : Boolean - Conditions or expressions that evaluate to true or false.
Boolean - A Boolean result of the logical operation.
|
|
|
|