I used the following code to load a YouTube video onto a flash website:
this.createEmptyMovieClip("video_mc", 10000);
setProperty(video_mc, _x, 275);
setProperty(video_mc, _y, 150);
this.video_mc.loadMovie("http://www.youtube.com/v/wNIlpIwr6yE&hl=en.swf")
Worked great, but there is a big problem. The video WON’T GO AWAY! It shows up on every page there after.
Does anyone know how to remove it from the other pages (Actions keyframes)?
I tried putting -
this.video_mc.unloadMovie("http://www.youtube.com/v/wNIlpIwr6yE&hl=en.swf");
on all the other pages, but not surprisingly it caused a scary error.
Thanks in advance!