flippingeventarg.as
来自「as3.0 翻书效果」· AS 代码 · 共 24 行
AS
24 行
/**
* Description here..
* @author Default
* @version 0.1
*/
package crlclr.Event {
public class FlippingEventArg {
public var first:int;
public var last:int;
public var max:int;
public function FlippingEventArg(first:int,last:int,max:int){
this.first=first;
this.last=last;
this.max=max;
}
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?