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

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
gt
(greater than
(strings))
>=
(greater than or equal
ge
(greater than or equal to
(strings))
++ (increment)
!= (inequality)
<> (inequality)
instanceof
<
(less
than)
lt
(less than
(strings))
<=
(less than or equal
Description
Deprecated since Flash Player 5. This operator was
deprecated in favor of the > (greater than) operator.
Compares the string representation of expression1
with the string representation of expression2 and
returns true if expression1 is greater than
expression2, false otherwise.
Compares two expressions and determines whether
to)
expression1 is greater than or equal to expression2
(true) or expression1 is less than expression2
(false).
Deprecated since Flash Player 5. This operator was
deprecated in favor of the >= (greater than or equal to)
operator.
Returns true if expression1 is greater than or equal to
expression2, false otherwise.
A pre-increment and post-increment unary operator
that adds 1 to expression .
Tests for the exact opposite of the equality (== )
operator.
Deprecated since Flash Player 5. This operator has
been deprecated. Macromedia recommends that you
use the != (inequality) operator.
Tests for the exact opposite of the equality (==)
operator.
Tests whether object is an instance of
classConstructor or a subclass of
classConstructor.
Compares two expressions and determines whether
expression1 is less than expression2 ; if so, the
operator returns true.
Deprecated since Flash Player 5. This operator was
deprecated in favor of the < (less than) operator.
Returns true if expression1 is less than expression2,
false otherwise.
Compares two expressions and determines whether
to)
expression1 is less than or equal to expression2 ; if it
is, the operator returns true.
Operators
115

Advertisement

Table of Contents
loading

Table of Contents