<mx:SWFLoader 加事件后卸载不干净
<mx:SWFLoader id="tb" source="topbar.swf" complete="tb_completeHandler(event)"/>
public function destory():void{
tb.removeEventListener(Event.COMPLETE,tb_completeHandler,false);
tb.unloadAndStop();
tb.source=null;
tb=null;}
我在destory方法里面该移除的都移除了!但是加载swf的组件还是没有销毁掉。我把complete="tb_completeHandler(event)"这句删掉组件就销毁了~这是什么原因??
[解决办法]
贴下tb_completeHandler方法代码,是不是持有tb引用而导致