I'm trying to access a nested json array
var jsonResponse:Object = JSON.decode(response);
var foo:Object = JSON.decode(jsonResponse.nested);
var bar:Array = foo as Array;
When i inspect foo - its an object with about 50 children objects.
I can read the properties of the children objects.
However, when i cast foo as an Array it comes back null.
I'd prefer to not iterate over each object and push it into an array.
Any advice?