New sound

I have my mp3’s setup on 2 keyframes… one mp3 on keyframe 1 the next on keyframe 2. I am using this code on the keyframes

  1. mySound = new Sound();
    mySound.loadSound(“firstsong.mp3”, true);
  2. mySound = new Sound();
    mySound.loadSound(“othersong.mp3”, true);

Is there a way to make the code trigger to goto keyframe 2 and start up the streaming of that song… after the first song is done?

thanks
joel

mySound.onSoundComplete = function() {
	do whatever you want;
}

:wink: =)