Hey,
Does anyone know how to create a two dimensional array with flash??
Thanks in advance,
Sander
Printable View
Hey,
Does anyone know how to create a two dimensional array with flash??
Thanks in advance,
Sander
http://www.macromedia.com/support/fl.../twodarray.htm
All info on this link
gparis
Hi,
Index = new Array();
Index[0] = new Array();
Index[1] = new Array();
etc.....
Now you can approach/call the like this:
Index[0][0] = 1;
Index[0][1] = 2;
Index[1][1] = "HI";
Cheers:)
God bless both of you!
Zander