Ver Mensaje Individual
  #2 (permalink)  
Antiguo 09/06/2004, 16:19
Avatar de ¬...
¬...
 
Fecha de Ingreso: noviembre-2003
Ubicación: Guatemala
Mensajes: 742
Antigüedad: 20 años, 5 meses
Puntos: 4
Código:
retroceder = function (lamov) {
	this.onEnterFrame = function() {
		currf = lamov._currentframe;
		
		if (currf>1) {
			currf -= 1;
			lamov.gotoAndStop(currf);
		}
		
	};
};
pega esta funcion al inicio de tu .fla y la usas cuando necesites asi:
Código:
retroceder(this);
this, si queres retroceder la main timeline, si queres retroceder un movieClip: retroceder(elmovie);
__________________
'_'

...