63
<
(less than)
Operator (comparison); compares two expressions and
determines whether
expression1
is less than
expression2
(
true
), or whether
expression1
is greater
than or equal to
expression2
(
false
). In Flash Lite (and
Flash 4), < is a numeric operator and is only used for
expressions and not strings.
The following examples illustrate
true
and
false
results
for < comparisons.
3 < 10;
// true
10 < 3;
// false
Fully supported
<=
(less than or equal
to)
Operator (comparison); compares two expressions and
determines whether
expression1
is less than or equal to
expression2
(
true
), or whether
expression1
is greater
than
expression2
(
false
).
The following examples illustrate
true
and
false
results
for <= comparisons:
5 <= 10;
// true
2 <= 2;
// true
10 <= 3;
// false
Fully supported
>
(greater than)
Operator (comparison); compares two expressions and
determines whether
expression1
is greater than
expression2
(
true
), or whether
expression1
is less than
or equal to
expression2
(
false
).
The following examples illustrate
true
and
false
results
for > comparisons.
10 > 3;
// true
3 > 10;
// false
Fully supported
>=
(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
Action name
Description
Support
Содержание FLASH MX PROFESSIONAL 2004 - FLASH LITE 1.1...
Страница 1: ...Macromedia Flash Lite 1 1 Authoring Guidelines...
Страница 6: ...6 Contents...
Страница 10: ...10 Chapter 1 Introduction...
Страница 20: ...20 Chapter 2 Optimizing Content...
Страница 56: ...56 Chapter 7 Testing Content...
Страница 58: ...58 Chapter 8 Development Kit Examples...
Страница 74: ...74 Appendix B Supported ActionScript Properties...