MACROMEDIA FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE Reference page 250

Flash lite 2.x actionscript language reference
Hide thumbs Also See for FLASH 8-FLASH LITE 2.X ACTIONSCRIPT LANGUAGE:
Table of Contents

Advertisement

Method summary
Modifiers
Signature
concat([value:Object]) :
join([delimiter:String]) :
pop() :
push(value:Object) :
reverse() :
shift() :
slice([startIndex:Number],
[endIndex:Number]) :
sort([compareFunction:Object],
[options:Number]) :
sortOn(fieldName:Object,
[options:Object]) :
splice(startIndex:Number,
[deleteCount:Number],
[value:Object]) :
toString() :
unshift(value:Object) :
250
ActionScript classes
Array
String
Object
Number
Void
Object
Array
Array
Array
Array
String
Number
Description
Concatenates the elements
specified in the parameters with the
elements in an array and creates a
new array.
Converts the elements in an array to
strings, inserts the specified
separator between the elements,
concatenates them, and returns the
resulting string.
Removes the last element from an
array and returns the value of that
element.
Adds one or more elements to the
end of an array and returns the new
length of the array.
Reverses the array in place.
Removes the first element from an
array and returns that element.
Returns a new array that consists of
a range of elements from the
original array, without modifying the
original array.
Sorts the elements in an array.
Sorts the elements in an array
according to one or more fields in
the array.
Adds elements to and removes
elements from an array.
Returns a string value representing
the elements in the specified Array
object.
Adds one or more elements to the
beginning of an array and returns
the new length of the array.

Advertisement

Table of Contents
loading

Table of Contents