61
APPENDIX A
Supported ActionScript
This appendix lists the Macromedia Flash Lite 1.1 ActionScript commands.
Action name
Description
Support
//
(comment)
Comment; indicates the beginning of a script comment.
Any characters that appear between the comment
delimiter // and the end-of-line character are interpreted
as a comment.
Fully supported
,
(comma)
Operator; a separator between two expressions that
causes the value of the second expression to be the
return value.
Fully supported
.
(dot)
Operator; used to navigate movie clip hierarchies to
access nested (child) movie clips, variables, or
properties.
Fully supported
“ “
(string delimiter)
String delimiter; when used before and after characters,
double quotes indicate that the characters have a literal
value and are considered a string and not a variable,
numerical value, or other ActionScript element.
Fully supported
– –
(decrement)
Operator; a pre-decrement and post-decrement unary
operator that subtracts 1 from an expression.
Fully supported
++
(increment)
Operator; a pre-increment and post-increment unary
operator that adds 1 to an expression.
Fully supported
+
(add)
A numeric operator used for adding numbers.
Fully supported
+=
(addition
assignment
)
Operator (arithmetic); assigns to
expression1
the value of
expre expression2
For example, the following two statements have the
same result:
x += y;
x = x + y;
Fully supported
Содержание 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...