Heya,
a quick question: I have an array that gets filled with values from a database and I want to sort things in Flash using the sortOn() function. I’m trying to create an array with a number of fields, like this example from the Help-files:
var my_array:Array = new Array();
my_array.push({password: "Bob", age:29});
my_array.push({password: "abcd", age:3});
my_array.push({password: "barb", age:35});
my_array.push({password: "catchy", age:4});
However, I need a bit more fields and if I put all of these in one line, it gets kinda lengthy.
I tried something like
var my_array:Array = new Array();
for (i=0; i<10; i++) {
my_array.push ( {prop1: "value_1_"+i} );
my_array.push ( {prop2: "value_2_"+i} );
}
but this apparently doesn’t work. Is there another way of doing this?
Cheers.