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

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
^
(bitwise
XOR)
^=
(bitwise XOR
assignment)
/*
(block comment
delimiter)
, (comma)
add
(concatenation
?: (conditional)
-- (decrement)
/ (division)
/=
(division
assignment)
. (dot)
== (equality)
eq
(equality
(strings))
>
(greater
than)
114
ActionScript language elements
Description
Converts expression1 and expression2 to 32-bit
unsigned integers, and returns a 1 in each bit position
where the corresponding bits in expression1 or
expression2 , but not both, are 1.
Assigns expression1 the value of expression1 ^
expression2.
Indicates one or more lines of script comments.
Evaluates expression1 , then expression2 , and so
on.
Deprecated since Flash Player 5. Macromedia
(strings))
recommends you use the addition (+) operator when
creating content for Flash Player 5 or later.
Note: Flash Lite 2.0 also deprecates the add operator
in favor of the addition (+) operator.
Concatenates two or more strings.
Instructs Flash to evaluate expression1 , and if the
value of expression1 is true , it returns the value of
expression2 ; otherwise it returns the value of
expression3.
A pre-decrement and post-decrement unary operator
that subtracts 1 from the expression.
Divides expression1 by expression2.
Assigns expression1 the value of expression1 /
expression2.
Used to navigate movie clip hierarchies to access
nested (child) movie clips, variables, or properties.
Tests two expressions for equality.
Deprecated since Flash Player 5. This operator was
deprecated in favor of the == (equality) operator.
Returns true if the string representation of
expression1 is equal to the string representation of
expression2, false otherwise.
Compares two expressions and determines whether
expression1 is greater than expression2; if it is, the
operator returns true.

Advertisement

Table of Contents
loading

Table of Contents