updatefilesecurityerror.as

来自「flex 实现的一个showcase 喜欢flex的朋友可以」· AS 代码 · 共 17 行

AS
17
字号
package com.finetune.apollo.autoupdate.events
{
	import flash.events.SecurityErrorEvent;
	
	public class UpdateFileSecurityError extends SecurityErrorEvent
	{
		
		public var message:String;

        public function UpdateFileSecurityError(text:String,type:String)
        {
            super(type);
			message=text;
        }
		
	}
}

⌨️ 快捷键说明

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