Groups | Blog | Home
all groups > flash actionscript > august 2005 >

flash actionscript : CHANGING FRAMES AFTER SOUND STREAM ENDS?


JASHENDEN
8/11/2005 7:38:18 PM
SAY I HAVE STOP ON FRAME 23 AND HAVE BEGUN A STREAMING MP3. HOW WOULD I GO ABOUT MOVE TO FRAME 24 ONCE THE STREAMING MP3 FILE FINISHED? PLEASE HELP. THANKS

NSurveyor
8/11/2005 8:01:56 PM
Please do not use all caps... it makes it look like that your question is more
important than everyone elses, and im sure most questions here are just as
important to the original posters as your thread is to you...

I'm assuming your code looks something like this, since you did not post the
code you are using?:

soundObject = new Sound();
soundObject.loadSound("some.mp3",true);

After that, have you tried:

soundObject.onSoundComplete = function(){
gotoAndStop(24);
}

?
AddThis Social Bookmark Button