![Antiguo](http://static.forosdelweb.com/fdwtheme/images/statusicon/post_old.gif)
08/02/2006, 14:37
|
![Avatar de -=ArgoN=-](http://static.forosdelweb.com/customavatars/avatar118472_4.gif) | | | Fecha de Ingreso: octubre-2005 Ubicación: Barcelona, España
Mensajes: 843
Antigüedad: 19 años, 3 meses 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 |