blankpage.as
来自「as3.0 翻书效果」· AS 代码 · 共 34 行
AS
34 行
/**
* Description here..
* @author Default
* @version 0.1
*/
package crlclr {
import crlclr.Interface.IPage;
import flash.display.Sprite;
public class BlankPage extends Sprite implements IPage{
protected var w:int;
protected var h:int;
public function BlankPage(w:int=100,h:int=100){
this.w=w;
this.h=h;
this.createChildren();
}
protected function createChildren():void{
//this.graphics.beginFill(0,0.2);
//this.graphics.drawRect(0,0,this.w,this.h);
}
/* public override function toString():String{
return "不想让你知道是什么"
}*/
}
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?