hi
i'd like to know if its possible to import or insert a fla (that i have done previously and is saved in my hard disk) into a specific frame of another movie i'm working on
thanks
You can import swf files using loadMovie() - unless you want to replace the entire content of your movie with another, it normally gives you moer control to call this as a movieclip method - so create an mc that you want to contain the imported swf and go:
myMC.loadMovie("mySWF.swf");
You can then control (play, stop etc) the imported swf by controlling myMC.