Hi :geek:
I am working on a flash presentation, which will be published as a “Windows projector” file.
I have a mp3 file - that I want to load. the script below works fine when testing in Flash but when the file is published as a projector the mp3 file does not load.
My script:
var my_sound:Sound = new Sound();
my_sound.onLoad = function(success:Boolean) {
if (success) {
my_sound.start();
}
}
my_sound.loadSound(“hold_on.mp3”, true);
Any suggestions on how to get the script to work, when publishing a projecor file?