答案 0 :(得分:0)
您可以在要加载的SWF中创建一个函数,以设置阶段参考。像
这样的东西public function setStage ( s:Stage ) : void
{
_stageReference = s;
// Add scroll listeners here
}
然后,当SWF加载到您的主SWF中时,您可以这样做(假设您加载的SWF的主类当然被命名为MainLoaded)
private function onLoaded ( e:Event ) : void
{
var target:MainLoaded = e.currentTarget.loader.content as MainLoaded;
target.setStage( stage );
addChild(target);
}