Código :
tabla_filas = 10;
tabla_columnas = 5;
var miArray:Array = new Array();
for (i=0; i<tabla_filas; i++) {
for (j=0; j<tabla_filas; j++) {
miArray[i][j] = random(100);
}
}
trace(miArray[0][0]); //undefinedbueno creo que el problema es como estoy declarando a "miArray" o no se. ayuda por favor
Byee Saludos!!
