I am sure this has been brought up before

but how do you play a .swf file in a .swf file? Would it be better if I were have it as an external or embeded? Would it require AS or would it be able to play just fine without it?

Please don’t flip over this repeated question, but I don’t have the slightest idea. Thanks

AS gives you the possibility to load things into a flash movie via loadMovie function. It can load either JPEG, PNG, GIF or SWF file.
example:

// create a movieclip into you want to load
this.createEmptyMovieClip("container", this.getNextHighestDepth());
container.loadMovie("someFolder/someFile.swf");
// or with absolute url
container.loadMovie("http://www.example.com/someFile.swf");

//edit: woot 400th post :smiley: