Problems with imported SWF
I have imported a SWF into my flash project but when I play the swf file it works but when I go to another scene, the swf file stays on the other scenes. This only happens when I open the scene which the swf file is in. I am using the following Actionscript to load the swf.
var myLoader:Loader = new Loader();
var url:URLRequest = new URLRequest("Simulator2.swf");
myLoader.load(url);
addChild(myLoader);
myLoader.x = 185;
myLoader.y = 35;
Could anyone help? thanks!
