RSS

Unload an externally loaded swf file

Actionscript 3 | Posted on May 17 2012

Simply add it like this:

this.addEventListener(Event.REMOVED_FROM_STAGE, onStageRemoved);
function onStageRemoved(e:Event):void
{
    // kill all listeneres and running processes here.
}

Post a Comment