You need to download the as3corelib library and add it to your library path
https://github.com/mikechambers/as3corelib
Then you can use the JSON decoding method, which will return the object.
var object:Object = JSON.decode( jsonString );
but you should be able to force your object to an array
var array:Array = object as Array;
if for some reason this doesn’t work, you can try
var array:Array = [];
for( var prop:String in obj )
array.push( obj[prop] );
source
share