i'm trying to parse json in as3 that has multiple arrays like this:
{
"a1": [
{
"a": 1,
"b": "2",
"c": 3
},
{
"a": 1,
"b": "2",
"c": 3
}
],
"a2": [
{
"a": 1,
"b": "2",
"c": 3
},
{
"a": 1,
"b": "2",
"c": 3
}
],
"a3": [
{
"a": 1,
"b": "2",
"c": 3
},
{
"a": 1,
"b": "2",
"c": 3
}
]
}
i don't really know hot to iterate through it to get the values out of each array though. i assume i'd use a for loop and append it to the end of the array name "a", but i'm not sure how to write this (if that's even the right way to approach it).