echo “I am Facing a Strange problem”;
I’m using a Loader to load few swf files one after the other.
var m = new Loader();
m.load(someURLRequest);
Fine, i can load them without a problem but i want to remove tha last loaded swf fully when its turn for a new swf to load.
For ex - Lets say i have 2 swfs (1.swf & 2.swf ). Now first 1.swf will load, then on some point 1.swf should unload and 2.swf shoud load. It works fine, 2.swf loads but when it loads ** i can still hear sound of 1.swf??**… cant see it on the stage though.
I have tried loader.unload(); but it doesn’t work. Even i tried to add e.target.content / loader content to a Movie Clip instead of adding the Loader itself, and on next load used removeChild(lastContent) but still same problem. I can see the 2nd swf but sound of first swf doesn’t go? Weird !:fight:
Any ideas?