⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 movableevent.as

📁 flex书效果代码
💻 AS
字号:
package com.mh.movable.event
{
	import flash.events.Event;
	
	public class MovableEvent extends Event
	{
		
		public static const SELECT_COMPONENT:String = "selectComponent";
		public static const MOVE_COMPONENT:String = "moveComponent";
		public static const RESIZE_COMPONENT:String = "resizeComponent";
		
		public var handle:String;
		
		
		public function MovableEvent( type:String, handle:String = null )
		{
			super( type, true );	
			
			this.handle = handle;
		}
		
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -