PDA

View Full Version : ext. mp3 sycned over four swfs?


Michele Holland
07-24-2004, 09:12 PM
Hey, I would like to loadSound (, true)to a first swf, and then on a different point in milliseconds load the next swf. I have read many of the posts re sound syncing and streaming, and it looks like I must use position in the script. How should this be written correctly? Thank you.
_root.bgSound = new Sound(music_mc);
_root.bgSound.loadSound("ChopinWalz.mp3", true);
bgSoundPosition = _root.bgSound.position

if(bgSoundPosition == 9.076){

_root.loadMovie("design.swf", 0);
//else what?
};
what is happening is the first swf is loading the mp3 but stops at the last frame. Help I am out of my league...