MACROMEDIA FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE Reference page 116

Flash lite 2.x actionscript language reference
Hide thumbs Also See for FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE:
Table of Contents

Advertisement

Operator
le
(less than or equal to
(strings))
//
(line comment
delimiter)
&&
(logical
AND)
and
(logical
AND)
!
(logical
NOT)
not
(logical
NOT)
||
(logical
OR)
or
(logical
OR)
% (modulo)
%=
(modulo
assignment)
* (multiplication)
*=
(multiplication
new
ne
(not equal
(strings))
116
ActionScript language elements
Description
Deprecated since Flash Player 5. This operator was
deprecated in Flash 5 in favor of the <= (less than or
equal to) operator.
Returns true if expression1 is less than or equal to
expression2, false otherwise.
Indicates the beginning of a script comment.
Performs a Boolean operation on the values of one or
both of the expressions.
Deprecated since Flash Player 5. Macromedia
recommends that you use the logical AND (&&)
operator.
Performs a logical AND (&&) operation in Flash Player
4.
Inverts the Boolean value of a variable or expression.
Deprecated since Flash Player 5. This operator was
deprecated in favor of the! (logical NOT) operator.
Performs a logical NOT (!) operation in Flash Player 4.
Evaluates expression1 (the expression on the left side
of the operator) and returns true if the expression
evaluates to true.
Deprecated since Flash Player 5. This operator was
deprecated in favor of the || (logical OR) operator.
Evaluates condition1 and condition2, and if either
expression is true, the whole expression is true.
Calculates the remainder of expression1 divided by
expression2.
Assigns expression1 the value of expression1 %
expression2.
Multiplies two numerical expressions.
Assigns expression1 the value of expression1 *
assignment)
expression2.
Creates a new, initially anonymous, object and calls the
function identified by the constructor parameter.
Deprecated since Flash Player 5. This operator was
deprecated in favor of the != (inequality) operator.
Returns true if expression1 is not equal to
expression2; false otherwise.

Advertisement

Table of Contents
loading

Table of Contents