MACROMEDIA FLEX-FLEX ACTIONSCRIPT LANGUAGE Reference page 254

Actionscript language reference
Table of Contents

Advertisement

Example
The following example creates a new array and sorts it according to the fields
first sort uses
name
first sort value and
var rec_array:Array = new Array();
rec_array.push( { name: "john", city: "omaha", zip: 68144 } );
rec_array.push( { name: "john", city: "kansas city", zip: 72345 } );
rec_array.push( { name: "bob", city: "omaha", zip: 94010 } );
for(i=0; i<rec_array.length; i++) {
trace(rec_array[i].name + ", " + rec_array[i].city);
}
// results:
// john, omaha
// john, kansas city
// bob, omaha
rec_array.sortOn( [ "name", "city" ]);
for(i=0; i<rec_array.length; i++) {
trace(rec_array[i].name + ", " + rec_array[i].city);
}
// results:
// bob, omaha
// john, kansas city
// john, omaha
rec_array.sortOn( ["city", "name" ]);
for(i=0; i<rec_array.length; i++) {
trace(rec_array[i].name + ", " + rec_array[i].city);
}
// results:
// john, kansas city
// bob, omaha
// john, omaha
See also
| (bitwise OR)
Array.splice()
Availability
Flash Player 5.
Usage
my_array.splice(start:Number, deleteCount:Number [, value0:Object,
value1...valueN]) : Array
Parameters
An integer that specifies the index of the element in the array where the insertion or
start
deletion begins.
254
Chapter 6: ActionScript Core Classes
as the first sort value and
as the second.
name
,
Array.sort()
as the second. The second sort uses
city
and
: The
name
city
as the
city

Advertisement

Table of Contents
loading
Need help?

Need help?

Do you have a question about the FLEX-FLEX ACTIONSCRIPT LANGUAGE and is the answer not in the manual?

This manual is also suitable for:

Flex

Table of Contents