screenshothorizontallistevent.as
来自「flex 实现的一个showcase 喜欢flex的朋友可以」· AS 代码 · 共 35 行
AS
35 行
package com.flexShowcase.events {
//////////////////////////////////////////////////
//import
import flash.events.Event;
//////////////////////////////////////////////////
//class
public class ScreenshotHorizontalListEvent extends Event {
//////////////////////////////////////////////////
//public static constants
public static const SELECT_SCREENSHOT:String = "screenshotHorizontalListSelectScreenshotEvent";
//////////////////////////////////////////////////
//public variables
public var url:String;
//////////////////////////////////////////////////
//constructor
public function ScreenshotHorizontalListEvent(type:String, bubbles:Boolean = true, cancelable:Boolean = false):void {
super(type, bubbles, cancelable);
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?