[MX]Loop Through Multidimensional Array

Heylo,

I have a multidimensional array that I’m trying to loop through.

The array ‘listAry’ contains 2 other arrays ‘listAry1’ and ‘listAry2’ .

Each of the sub-arrays contain 10 items each that I’d like to loop through with a for loop.

Anyone know of an example for doing this?

Thanks

:toad:

use a nested loop like this one:

[AS]
for(var i=0; i<listAry.length; i++){
for(var x=0; x<listAry*.lentgh; x++){
trace(listAry*[x])
}
}
[/AS]
hope u get the picture