How do I unload a YouTube video?

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!

Couldn’t you just add:

this.removeMovieClip(“video_mc”);

You would have to add it to all your pages
Not sure if that’s what you want to happen

Your solution seemed so clean and perfect, but alas, the YouTube video is still there on every page, mocking me. Any other ideas?