我正在从一个主 swf 加载/卸载多个 swf。当我加载一个新的 swf 时,我会这样做:
contentContainer.addChild(the new swf); //add the new swf
contentContainer.swapChildrenAt(0,1);
contentContainer.removeChildAt(1); //remove the previous swf
我的问题是,当我 removeChildAt() 时,旧 swf 是否继续“播放”并继续占用 cpu 资源?我怎样才能完全杀死它?如果旧版 swf 中有音频或视频,即使删除后它似乎仍在播放。