码迷,mamicode.com
首页 > 其他好文 > 详细

关于事件机制的理解

时间:2014-08-11 20:37:42      阅读:191      评论:0      收藏:0      [点我收藏+]

标签:blog   os   io   for   cti   div   new   log   

最近终于把事件机制弄明白了。和大家分享一下。

下面是定义的事件:

package
{
	import flash.events.Event;
	
	
	public class NBEEvent extends Event
	{
		/**
		 * 对
		 */
		public static const RIGHT: String = "nbe_event_right";
		
		
		
		public function NBEEvent(type: String, bubbles: Boolean = true, cancelable: Boolean = false)
		{
			super(type, bubbles, cancelable);
		
		}
		
		public override function clone(): Event
		{
			return new NBEEvent(type, bubbles, cancelable);
		}
		
		public override function toString(): String
		{
			return formatToString("NBEEvent", "type", "bubbles", "cancelable", "eventPhase");
		}
	
	}

}

 然后用一个按钮来发送事件

import NBEEvent;
import flash.events.MouseEvent;

btn.addEventListener(MouseEvent.CLICK,onClick);
function onClick(e:MouseEvent)
{
	dispatchEvent(new NBEEvent(NBEEvent.RIGHT,false,false));
}

 用一个mc来接收事件

import NBEEvent;
m1.addEventListener(NBEEvent.RIGHT,_onRW,false,0,true);
function _onRW(e:NBEEvent)
{
	trace(e.type)
}

 

关于事件机制的理解,布布扣,bubuko.com

关于事件机制的理解

标签:blog   os   io   for   cti   div   new   log   

原文地址:http://www.cnblogs.com/qshuyan/p/3905165.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!