I know this has been addressed before and I’ve already searched the forums for the answer but none of the previous posts on this matter have an answer.
I have this script in the first frame of the first scene of my movie
[AS]
myMusic = new Sound(loopHolder);
myMusic.loadSound(“sound/Beats.mp3”);
myMusic.start(0,999);
[/AS]
which works fine when I test the movie locally, but when I move it to the server I get nothing. I tried using a .wav and a .aiff and still get nothing. Does anyone out there know why this is? Is it a server issue…maybe something to do with mime types? I’m at a loss.