28
Appendix A: Supported ActionScript
>= (greater than or
equal to)
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
Fully supported
<> (inequality)
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
Fully supported
% (modulo)
Operator; calculates the remainder of expression1
divided by expression2.
For example, the following statement sets the value of x
to 3:
x = 45 % 6;
Fully supported
%= (modulo
assignment)
Operator (assignment); assigns to expression1 the value
of expression1 % expression2.
For example, the following two expressions are the same:
x %= y
x = x % y
Fully supported
Action Name
Description
Support
Содержание FLASH MX 2004 - FLASH LITE AUTHORING GUIDELINES FOR THE I-MODE...
Страница 1: ...Flash Lite Authoring Guidelines for the i mode Service by NTT DoCoMo...
Страница 4: ...4 Contents...
Страница 6: ...6 Chapter 1 Introduction...
Страница 24: ...24 Chapter 4 Testing Content...
Страница 36: ...36 Appendix A Supported ActionScript...
Страница 40: ...40 Appendix B Supported Properties...
Страница 48: ...48 Appendix D References...