自定义事件类LoadEvent

package leon.events{
	import flash.events.Event;

	public class LoadEvent extends Event {

		public var _info:String;

		public function LoadEvent(type:String,_info:String):void {
			this._info=_info;
			super(type);
		}
	}
}
posted @ 2010-06-21 22:08  LT世纪  阅读(137)  评论(0编辑  收藏  举报