//
//put this code in a script frame where you want the video to play
//this creates an empty clip on your stage
var MC_LoadedSWF:MovieClip = this.createEmptyMovieClip("MC_LoadedSWF", this.getNextHighestDepth());
//this will place the clip on your stage
MC_LoadedSWF._x = 25;
MC_LoadedSWF._y = 25;
//this loads an external movie swf into the empty clip this external movie swf must be in the same folder/directory as the final/main swf
MC_LoadedSWF.loadMovie("YOUR_MOVIE_SWF_HERE.swf");
//
Copy this text in the fame you want and all ya gotta do is change
"YOUR_MOVIE_SWF_HERE.swf" with the file name you want to load.
Then you will have to mess with the X and Y stage location values until you get it placed where you want.
> > Credits and thanks for the code to Mark from
IntuiCode.com