I am incorporating a background music loop to a site im working on but the music delays about 30 seconds before it begins to play. It’s an external movie clip which I even load in the very first (techically third because of the preloader script) keyframe and then unload just so the computer can have it ready to go.
~ First of all: is this delay happening on all of your guys computers or just my messed up one…
~ Secondly, how do I get it to come in exactly when the final layout is opened?
just make the movie load with the sound with a stop action on the frist frame then when the site gets to the last frame put actions which tells teh movie clip to go to and play frame 2 in order to ahve it loop just put a gotoandplay frame 2 action in the last frame should solve your problem
why are you unloading t??? maybe thats your problem
I had the music playing immediately. It might be because you’re not streaming your music. Meaning that it will download the whole loop and then start playing instead of streaming, which plays while downloading. I suppose you use the sound object ? yoursound.loadSound(“loop.mp3”,false) is not streaming, yoursound.loadSound(“loop.mp3”,true) is streaming