Array (Object)
An Array is an Object that is composed of a number of elements. An element can be any value (eg string) or Object. The types of the elements do not have to be all the same, but usually they will be. The elements are access using an index. The index is usually a numeric value starting from zero for the first element. The index is specified by a value within square brackets after an array variable name. The square brackets are called the array access operator.| name = new Array ; |
| name [ index ] = " value "; |
| name = new Array ( length ); ( Note: won't work with SWF4 Movies) |
| name = new Array ( value1, value2... ); ( Note: won't work with SWF4 Movies) |
| name = new Array ; |