I made. Thus ok but not accepted upgrade; because? I need to make upgrade of a multidimensional Array.
You can nest brackets to simulate multidimensional arrays. You can nest arrays up to 256 levels deep.
The following code creates an array called ticTacToe with three elements; each element is also an array with three elements:
var ticTac:Array = [[1, 2, 3], [4, 5, 6], [7, 8, 9]];
tictac[[1]] = “1111”; ???
or
tictac[0][1] = “9999”;
// to see a list of the array elements.
trace (“TICTAC” +ticTac); ---->TICTAC1,2,3,4,5,6,7,8,9
trace (“TICTAC–” +ticTac[0][1]); —> TICTAC–2
I need that he is: TICTAC–9999
It helps me; where it is the error?