Can't play SWF on timeline after AS3 import
A helpful YouTube video showed me how to import my SWF onto the stage.
- var bgLoader:Loader = new Loader(); // create a new instance of the Loader class
bgLoader.load(new URLRequest("mymovie1.swf")); // load the SWF file
mc_name.addChild(bgLoader); // add that instance to the display list
bgLoader.x = 0;
bgLoader.y = 0;
My only issue now is that although the SWF plays when I test the movie, it doesn't play directly on the stage when I press the timeline's Play button. Is there a way I can get the SWF to play using the Play button? I'd prefer to see the SWF so I can add overlays. Thanks.