Estoy haciendo un proyecto que acabará con un cd autoejecutable.
He puesto un música de fondo que en el swf suena perfectamente, pero que cuando compilo como .exe no se oye.
¿Es eso normal?
La he puesto de la siguiente manera:
Código :
if (noRepeat == undefined) {
var noRepeat:Number;
noRepeat = 1;
var my_sound:Sound = new Sound(this);
my_sound.attachSound("/music/imagenes.mp3");
my_sound.onSoundComplete = function() {
this.start();
}
};
my_sound.loadSound("/music/imagenes.mp3", true);
my_sound.start();
my_sound.setVolume(10);Muchas gracias!!!
