ActionScript 3 访问舞台对象

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ActionScript 3 访问舞台对象相关的知识,希望对你有一定的参考价值。

package 
{
	import flash.events.Event;
	
	public class MyClass extends MovieClip
	{
	   public function MyClass()
		{
			super();		
			addEventListener(Event.ADDED_TO_STAGE,added);
// stage is null; try trace(stage.stagewidth); ==> null object
		}
		
		public function added(evt:Event):void{
			removeEventListener(Event.ADDED_TO_STAGE,added);
// stage is not null; try trace(stage.stagewidth); ==> somevalue
			
		}
	}
}

以上是关于ActionScript 3 访问舞台对象的主要内容,如果未能解决你的问题,请参考以下文章

Actionscript 3,访问符号属性(AS Linkage)

ActionScript 3 - 在舞台上添加和删除孩子

ActionScript 3 将舞台设置为NoScale

ActionScript 3 使用动作脚本将子项添加到舞台

ActionScript 3 AS3检测鼠标是否在舞台上方

ActionScript 3 在舞台中居中一个基于左上角的元素