I need to load a SWF file to my main movie and unload it on frame 2. I was able to add the SWF file but I am having trouble removing it on frame 2. Ill appreciate if anyone could help me out on this one. This is what I have so far.
var myLoader:Loader = new Loader();
var url:URLRequest = new URLRequest("dynamicMouseTrail.swf");
myLoader.load(url);
addChild(myLoader);
myLoader.x = 0;
myLoader.y = 0;