/= (division assignment)
Availability
Flash Lite 1.0.
Usage
expression1 /= expression2
Operands
Numbers or expressions that evaluate to numbers.
expression1, expression2
Description
Operator (arithmetic compound assignment); assigns
the value of
expression1
. For example, the following two statements are equivalent:
expression1 / expression2
x /= y
x = x / y
Example
The following example uses the
operator with variables and numbers:
/=
x = 10;
y = 2;
x /= y;
// The expression x now contains the value 5.
. (dot)
Availability
Flash Lite 1.0.
Usage
instancename.variable
instancename.childinstance.variable
Operands
The instance name of a movie clip.
instancename
A movie clip instance that is a child of, or nested in, another movie clip.
childinstance
A variable on the timeline of the specified movie clip instance name.
variable
88
Flash Lite Operators
Need help?
Do you have a question about the FLASH 8-FLASH LITE 1.X ACTIONSCRIPT LANGUAGE and is the answer not in the manual?