在外部类中,我正在尝试修改舞台对象的属性Apple。我想将它设置为可见,所以我输入了我的代码:
Apple.visible =true;
但是它说苹果没有定义,可能是因为它没有进入第一阶段...我怎么能在我的班级“导入”呢?
答案 0 :(得分:0)
尝试类似:
DisplayObjectContainer(stage.getChildAt(0)).getChildByName("Apple").visible = true;
其中stage.getChildAt(0)
是“主时间轴”电影,其中包含所有内部对象。