quote:
Originally posted by tryxter
Off topic:
How can I declare a multidimensional array? like array[x][y]?
I tried "var xyz = new array(,)" and "new array([],[])" but it seems that isn't working...
I've already tried to read some reference but it's kind of messy on that part.
code:
var myArray = new Array();
myArray[0][0] = "A1"
myArray[0][1] = "A2"
myArray[1][0] = "B1"
myArray[1][1] = "B2"
IIRC, it should be like that