Problem with merged SWF
I have a Problem. I just merged two SWF inserting the second on the first one with the following code in AS3:
var request:URLRequest = new URLRequest("destino.swf");
var loader:Loader = new Loader()
loader.load(request);
addChild(loader);
This is a slide file, something like powerpoint where you can navigate through the slides with the arrows. I merged two SWF because it's a presentation with images and videos, The problem is that if I navigate back, the slides of the second SWF get mixed with the first one:
I'll show you a video with the problem. After the video is when the first SWF load the second one.
I hope you can help me.