im trying to mkae a matrix of movie clips that is 5x8 and heres the code have for it
[AS]
myDots = new Object();
myDots[0] = [00_mc, 01_mc, 02_mc, 03_mc, 04_mc, 05_mc, 06_mc, 07_mc];
myDots[1] = [10_mc, 11_mc, 12_mc, 13_mc, 14_mc, 15_mc, 16_mc, 17_mc];
myDots[2] = [20_mc, 21_mc, 22_mc, 23_mc, 24_mc, 25_mc, 26_mc, 27_mc];
myDots[3] = [30_mc, 31_mc, 32_mc, 33_mc, 34_mc, 35_mc, 36_mc, 37_mc];
myDots[4] = [40_mc, 41_mc, 42_mc, 43_mc, 44_mc, 45_mc, 46_mc, 47_mc];
[/AS]
and it comes up with this error
Scene=Scene 1, Layer=Layer 1, Frame=2: Line 3: ‘]’ or ‘,’ expected
myDots[“0”] = [00_mc, 01_mc, 02_mc, 03_mc, 04_mc, 05_mc, 06_mc, 07_mc];
now i know its not jiust this particualr line because if i remove it the next line does the same thing, so can some please help the newby?