Hola a todos!
Necesito ayuda: Estoy cargando un mp3, le he dado la siguiente acción a un fotograma:
Código HTML:
if(_global.Behaviors == null)_global.Behaviors = {};
if(_global.Behaviors.Sound == null)_global.Behaviors.Sound = {};
if(typeof this.createEmptyMovieClip == 'undefined'){
this._parent.createEmptyMovieClip('BS_loser',new Date().getTime()-(Math.floor((new Date().getTime()) /10000)*10000) );
_global.Behaviors.Sound.loser = new Sound(this._parent.BS_loser);
} else {
this.createEmptyMovieClip('_loser_',new Date().getTime()-(Math.floor((new Date().getTime()) /10000)*10000) );
_global.Behaviors.Sound.loser = new Sound(this.BS_loser);
}
_global.Behaviors.Sound.loser.loadSound("loser.mp3",true);
En escena tengo un boton On- Off para la música, ¿Cómo puedo hacer para controlar que el botón On no cargue el mp3 si es que ya está sonando??
Gracias!!