08/02/2006, 14:37
|
| | | Fecha de Ingreso: octubre-2005 Ubicación: Barcelona, España
Mensajes: 843
Antigüedad: 19 años, 1 mes Puntos: 1 | |
Prueba con esto:
Código:
for (i=0; i<3; i++) {
for (n=0; n<3; n++) {
z = attachMovie("boton_ed", "boton_ed"+i+n, 200+n+i);
z._x = 85*n;
z._y = 85*i;
z.i = i;
z.n = n
// esto es para ver cual es cual ¬¬
z.onPress = function() {
trace("i = "+this.i+", n = "+this.n);
};
}
}
Te lo habias olvidado: +i
ArgoN |