📄 blankpage.as
字号:
/**
* 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 + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -