Macromedia flash mx professional 2004-macromedia flash lite 1.1 authoring guidelines Benutzerhandbuch

Seite von 86
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 
expression1 + expression2
For example, the following two statements have the 
same result: 
x += y;
x = x + y;
Fully supported