Hi all I have made index swf which is loading other child swf's into index these swf's are images.swf, portfolio.swf, about.swf etc.., I have made 2 public function in each swf which is construct or diconstruct.
when i unload any swf then i play disconstruct public function of every child swf.. I stuck in when I remove stage event listener of every child swf then it shows error..
TypeError: Error #1009: Cannot access a property or method of a null object reference.
at library_fla::MainTimeline/diconstruct()
here my diconstruct function of all child swf
function diconstruct(){
pic.video.gotoAndStop(1)
stage.removeEventListener(Event.RESIZE, sizeListener);
}
how i delete stage event listener of every child swf..???? I feel it is showing error because it is trying to remove event listener from index.swf
if it's stage that's null then the object can't be in the DisplayList
an alternative that by passes your problem but does not solve it
when adding your stage.removeEventListener(Event.RESIZE, sizeListener);
you could use
stage.removeEventListener(Event.RESIZE, sizeListener, false, 0, true);
this means the listener is eligible for garbage collection and you don't need to remove the listener
North America
Europe, Middle East and Africa
Asia Pacific