hi all, I’m desperate…
I tried to emded a youtube movie into a flash file, and that all seems to be working:
createEmptyMovieClip("video_mc", 10000);
video_mc._x = 150;
video_mc._y = 5;
video_mc._xscale = 100;
video_mc._yscale = 100;
video_mc.loadMovie("http://www.youtube.com/v/laAcC2r8ag0&hl=en&fs=1&rel=0&color1=0x3a3a3a&color2=0x999999");
So that’s working. Although, when I click a button below that movie, it jumps back to frame one, the movie is gone BUT the sound keeps on playing forever.
on (release) {
video_mc.stop();
stopAllSounds();
removeMovieClip(video_mc);
_root.gotoAndStop(1);
}
So basically the question is: how can I stop streaming sound from keeping on playing even when jumping to another frame?
I hope you can help me !