AS3 Load a swf into another (0)
February 12th, 2009 by terrypaton, under Library, News.
I keep using this a lot lately so I might as well add it to my library (I keep having to look it up in the help!)
This is timeline code …
var loader:Loader = new Loader()
var request:URLRequest = new URLRequest(“xmasCannon.swf”);
loader.load(request)
addChild (loader)
stop()





