| Symbols   A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z | 
| @ (attribute identifier) — Operator | 
|  | Identifies attributes of an XML or XMLList object. | 
| * — Special Type | 
|  | Specifies that a property is untyped. | 
| + (addition) — Operator | 
|  | Adds numeric expressions. | 
| += (addition assignment) — Operator | 
|  | Assigns expression1the value ofexpression1 + expression2. | 
| [] (array access) — Operator | 
|  | Initializes a new array or multidimensional array with the specified elements ( a0, and so on), or accesses elements in an array. | 
| = (assignment) — Operator | 
|  | Assigns the value of expression2(the operand on the right) to the variable, array element, or property inexpression1. | 
| & (bitwise AND) — Operator | 
|  | Converts expression1andexpression2to 32-bit unsigned integers, and performs a Boolean AND operation on each bit of the integer parameters. | 
| &= (bitwise AND assignment) — Operator | 
|  | Assigns expression1the value ofexpression1& expression2. | 
| << (bitwise left shift) — Operator | 
|  | Converts expression1andshiftCountto 32-bit integers, and shifts all the bits inexpression1to the left by the number of places specified by the integer resulting from the conversion ofshiftCount. | 
| <<= (bitwise left shift and assignment) — Operator | 
|  | Performs a bitwise left shift ( <<=) operation and stores the contents as a result inexpression1. | 
| ~ (bitwise NOT) — Operator | 
|  | Converts expressionto a 32-bit signed integer, and then applies a bitwise one's complement. | 
| | (bitwise OR) — Operator | 
|  | Converts expression1andexpression2to 32-bit unsigned integers, and places a 1 in each bit position where the corresponding bits of either expression1orexpression2are 1. | 
| |= (bitwise OR assignment) — Operator | 
|  | Assigns expression1the value of expression1 | expression2. | 
| >> (bitwise right shift) — Operator | 
|  | Converts expressionandshiftCountto 32-bit integers, and shifts all the bits inexpressionto the right by the number of places specified by the integer that results from the conversion ofshiftCount. | 
| >>= (bitwise right shift and assignment) — Operator | 
|  | Performs a bitwise right-shift operation and stores the result in expression. | 
| >>> (bitwise unsigned right shift) — Operator | 
|  | The same as the bitwise right shift ( >>) operator except that it does not preserve the sign of the original expression because the bits on the left are always filled with 0. | 
| >>>= (bitwise unsigned right shift and assignment) — Operator | 
|  | Performs an unsigned bitwise right-shift operation and stores the result in expression. | 
| ^ (bitwise XOR) — Operator | 
|  | Converts expression1andexpression2to 32-bit unsigned integers, and places a 1 in each bit position where the corresponding bits inexpression1orexpression2, but not both, are 1. | 
| ^= (bitwise XOR assignment) — Operator | 
|  | Assigns expression1the value of expression1 ^ expression2. | 
| /*..*/ (block comment delimiter) — Operator | 
|  | Delimits one or more lines of script comments. | 
| { } (braces (XML)) — Operator | 
|  | Evaluates an expression that is used in an XML or XMLList initializer. | 
| [ ] (brackets (XML)) — Operator | 
|  | Accesses a property or attribute of an XML or XMLList object. | 
| , (comma) — Operator | 
|  | Evaluates expression1, thenexpression2, and so on. | 
| + (concatenation) — Operator | 
|  | Concatenates (combines) strings. | 
| += (concatenation assignment) — Operator | 
|  | Assigns expression1the value ofexpression1 + expression2. | 
| += (concatenation assignment (XMLList)) — Operator | 
|  | Assigns expression1, which is an XMLList object, the value ofexpression1 + expression2. | 
| + (concatenation (XMLList)) — Operator | 
|  | Concatenates (combines) XML or XMLList values into an XMLList object. | 
| ?: (conditional) — Operator | 
|  | Evaluates expression1, and if the value ofexpression1istrue, the result is the value ofexpression2; otherwise the result is the value ofexpression3. | 
| -- (decrement) — Operator | 
|  | Subtracts 1 from the operand. | 
| .. (descendant accessor) — Operator | 
|  | Navigates to descendant elements of an XML or XMLList object, or (combined with the @ operator) finds matching attributes of descendants. | 
| / (division) — Operator | 
|  | Divides expression1byexpression2. | 
| /= (division assignment) — Operator | 
|  | Assigns expression1the value ofexpression1 / expression2. | 
| . (dot) — Operator | 
|  | Accesses class variables and methods, gets and sets object properties, and delimits imported packages or classes. | 
| . (dot (XML)) — Operator | 
|  | Navigates to child elements of an XML or XMLList object, or (combined with the @ operator) returns attributes of an XML or XMLList object. | 
| == (equality) — Operator | 
|  | Tests two expressions for equality. | 
| > (greater than) — Operator | 
|  | Compares two expressions and determines whether expression1is greater thanexpression2; if it is, the result istrue. | 
| >= (greater than or equal to) — Operator | 
|  | Compares two expressions and determines whether expression1is greater than or equal toexpression2(true) orexpression1is less thanexpression2(false). | 
| ++ (increment) — Operator | 
|  | Adds 1 to an expression. | 
| != (inequality) — Operator | 
|  | Tests for the exact opposite of the equality ( ==) operator. | 
| < (less than) — Operator | 
|  | Compares two expressions and determines whether expression1is less thanexpression2; if so, the result istrue. | 
| <= (less than or equal to) — Operator | 
|  | Compares two expressions and determines whether expression1is less than or equal toexpression2; if it is, the result istrue. | 
| // (line comment delimiter) — Operator | 
|  | Indicates the beginning of a script comment. | 
| && (logical AND) — Operator | 
|  | Returns expression1if it isfalseor can be converted tofalse, andexpression2otherwise. | 
| ! (logical NOT) — Operator | 
|  | Inverts the Boolean value of a variable or expression. | 
| || (logical OR) — Operator | 
|  | Returns expression1if it istrueor can be converted totrue, andexpression2otherwise. | 
| % (modulo) — Operator | 
|  | Calculates the remainder of expression1divided byexpression2. | 
| %= (modulo assignment) — Operator | 
|  | Assigns expression1the value ofexpression1 % expression2. | 
| * (multiplication) — Operator | 
|  | Multiplies two numerical expressions. | 
| *= (multiplication assignment) — Operator | 
|  | Assigns expression1the value ofexpression1 * expression2. | 
| :: (name qualifier) — Operator | 
|  | Identifies the namespace of a property, a method, an XML property, or an XML attribute. | 
| {} (object initializer) — Operator | 
|  | Creates a new object and initializes it with the specified nameandvalueproperty pairs. | 
| () (parentheses) — Operator | 
|  | Performs a grouping operation on one or more parameters, performs sequential evaluation of expressions, or surrounds one or more parameters and passes them as arguments to a function that precedes the parentheses. | 
| ( ) (parentheses (XML)) — Operator | 
|  | Evaluates an expression in an E4X XML construct. | 
| / (RegExp delimiter) — Operator | 
|  | When used before and after characters, indicates that the characters have a literal value and are considered a regular expression (RegExp), not a variable, string, or other ActionScript element. | 
| ... (rest) parameter — Statement | 
|  | Specifies that a function will accept any number of comma-delimited arguments. | 
| === (strict equality) — Operator | 
|  | Tests two expressions for equality, but does not perform automatic data conversion. | 
| !== (strict inequality) — Operator | 
|  | Tests for the exact opposite of the strict equality ( ===) operator. | 
| " (string delimiter) — Operator | 
|  | When used before and after characters, indicates that the characters have a literal value and are considered a string, not a variable, numerical value, or other ActionScript element. | 
| - (subtraction) — Operator | 
|  | Used for negating or subtracting. | 
| -= (subtraction assignment) — Operator | 
|  | Assigns expression1the value ofexpression1 - expression2. | 
| : (type) — Operator | 
|  | Used for assigning a data type; this operator specifies the variable type, function return type, or function parameter type. | 
| < > (XML literal tag delimiter) — Operator | 
|  | Defines an XML tag in an XML literal. | 
|  | 
| Symbols   A  B  C  D  E  F  G  H  I  J  K  L  M  N  O  P  Q  R  S  T  U  V  W  X  Y  Z |