MACROMEDIA FLASH MX 2004 - FLASH LITE AUTHORING GUIDELINES FOR THE I-MODE SERVICE Manuallines page 28

Flash lite authoring guidelines for the i-mode service by ntt docomo
Table of Contents

Advertisement

Action Name
>= (greater than or
equal to)
<> (inequality)
% (modulo)
%= (modulo
assignment)
28
Appendix A: Supported ActionScript
Description
Operator (comparison); compares two expressions and
determines whether expression1 is greater than or equal
to expression2 (true), or whether expression1 is less than
expression2 (false).
The following examples illustrate true and false results for
>= comparisons:
10 >= 5;
// true
2 >= 2;
// true
3 >=10;
// false
Operator (equality); tests the opposite of the equality
operator. If expression1 is equal to expression2, the result
is false.
The following examples illustrate true and false returns
for the <> operator.
3 < > 10;
// true
3 <> 3;
// false
Operator; calculates the remainder of expression1
divided by expression2.
For example, the following statement sets the value of x
to 3:
x = 45 % 6;
Operator (assignment); assigns to expression1 the value
of expression1 % expression2.
For example, the following two expressions are the same:
x %= y
x = x % y
Support
Fully supported
Fully supported
Fully supported
Fully supported

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLASH MX 2004 - FLASH LITE AUTHORING GUIDELINES FOR THE I-MODE SERVICE and is the answer not in the manual?

Questions and answers

This manual is also suitable for:

Flash mx professional 2004

Table of Contents