Hello everyone… I am trying to populate my array, but looks like i am only getting the last value… Why is that? And i HAVE to populate it in that weird way of what looks like: Key/value…
Here is the code:
var final_info:Array = new Array();
var i:int = 0;
while (i < (temp_entire_info.length-1))
{
// name|123|123|place|1218
var single_info:Array = temp_entire_info*.split("|");
final_info = [{Name:single_info[0], 1_pos:single_info_street[1], 2_pos:single_info[2], place:single_info[3], time:single_info[4]},];
i++;
}
Any help will be very welcome…