문제

In an external class i'm trying to modify a property of a stage object, Apple. I want to set it visible so i put in my code:

Apple.visible =true;

but it says that Apple is not defined, probably because it doesn't refeers to the stage one... how can I "import" it in my class?

도움이 되었습니까?

해결책

Try something like:

DisplayObjectContainer(stage.getChildAt(0)).getChildByName("Apple").visible = true;

where stage.getChildAt(0) is "Main Timeline" movie, that contains all inner objects.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top