PDA

View Full Version : Embedding large swfs into stand-alone CD


davill78
05-01-2007, 09:40 PM
I'm creating a stand-alone (auto start) CD with multiple embedded Swfs and audio. Some are pretty large and have multiple movies and is slowing down the movie and knocking the timed audio off sequence.

*To load the movies I'm using:

loadMovie("swf/traffic.swf","placeholder2");

*To load audio I'm using:

theAudio = "audio/demo.mp3"

audio = new Sound();
audio.onLoad = function(loadedOk) {
if (loadedOk) {
audio.start();
}
};

audio.loadSound(theAudio, true);
audio.onSoundComplete = function() {
stop();
};


It works fine from my desktop put when I load onto CD everything is out of wack. The audio is trying to load, the movie is trying to load, it's a disaster.

I need everything to run in sequence with one another. I've tried inporting the individual swfs into a single movie but it just creates tons of frames and seems stacoto.

I'm a relative beginner and I need help. I really need this to be seamless.

Please help!!!