Ver Mensaje Individual
  #2 (permalink)  
Antiguo 08/02/2006, 14:37
Avatar de -=ArgoN=-
-=ArgoN=-
 
Fecha de Ingreso: octubre-2005
Ubicación: Barcelona, España
Mensajes: 843
Antigüedad: 18 años, 6 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