Ver Mensaje Individual
  #3 (permalink)  
Antiguo 03/11/2004, 03:03
4ND0R
 
Fecha de Ingreso: diciembre-2002
Ubicación: Estoy por ahi, buscandome
Mensajes: 60
Antigüedad: 21 años, 4 meses
Puntos: 0
La propiedad '_currentframe' solo captura el número asignado a cada fotograma como identificador predeterminado.

Prueba definiendo código a nivel de fotograma:

Código:
go_btn.onRelease = function() {
	if (_currentframe == 1) {
		gotoAndPlay('x');
	} else if (_currentframe == 2) {
		gotoAndPlay('y');
	}
};
__________________
4ND0R