Hi,
I am loading a soundtrack using the following code, but it won’t loop. (The sound track is sitting with the rest of my Flash files.) It plays once only and then stops. I don’t want to import the sound to my movie and run it from there since it causes the movie to take too long to load. And if remove the Export in First Frame option, the music doesn’t play at all! Any ideas how I can make it loop? Here’s the code:
my_sound = new Sound();
my_sound.loadSound(“track.mp3”, true);
my_sound.start(0,1000);
gotoAndStop(“4”);