Tengo esto en el fotograma 1
Cita: stop();
if(_global.Behaviors == null)_global.Behaviors = {};
if(_global.Behaviors.Sound == null)_global.Behaviors.Sound = {};
if(typeof this.createEmptyMovieClip == 'undefined'){
this._parent.createEmptyMovieClip('BS_unsonido',ne w Date().getTime()-(Math.floor((new Date().getTime()) /10000)*10000) );
_global.Behaviors.Sound.unsonido = new Sound(this._parent.BS_unsonido);
} else {
this.createEmptyMovieClip('_unsonido_',new Date().getTime()-(Math.floor((new Date().getTime()) /10000)*10000) );
_global.Behaviors.Sound.unsonido = new Sound(this.BS_unsonido);
}
_global.Behaviors.Sound.unsonido.attachSound("unde r");
if (false) {
_global.Behaviors.Sound.unsonido.start(0,1);
}
y un boton que activa el sonido (Play)
Cita: on (release) {
_global.Behaviors.Sound.unsonido.start(0,1);
}
Quiero que apenas termine se redireccione a otra pagina
eso es todo gracias