Im using the following code in my base flash movie (flash MX) and it successfully loads an external .swf video clip.... When that external video element ends I have added action script to 'stop' it when it reaches the end.
Now, What Im intrested in learning how to do but none of my flash books or tutorials make clear, is how in the heck to (upon the completion of the external .swf video) uload or remove it ... all I get is the stopped external movie clip as a black element (the last frame of the video is a black frame)- so it does 'stop' but now what ... what do I do to remove it?
I'll be loading other movies into the same 'holder' if that matters.
heres the load movie function Im using:
Now, What Im intrested in learning how to do but none of my flash books or tutorials make clear, is how in the heck to (upon the completion of the external .swf video) uload or remove it ... all I get is the stopped external movie clip as a black element (the last frame of the video is a black frame)- so it does 'stop' but now what ... what do I do to remove it?
I'll be loading other movies into the same 'holder' if that matters.
heres the load movie function Im using:
Code:
_root.createEmptyMovieClip("container", 1);
loadMovie("video/video_test.swf", "container");
container._x = 611;
container._y = 61;