1,修改html-template下的index.template.html文件…增加四行
1</html>
上述文件增加了四行…见我文中有提示
2,Mxml文件:
假如一个button按钮
as代码:
public function fullScreen():void{//全屏
stage.displayState = (stage.displayState ==
StageDisplayState.NORMAL?StageDisplayState.FULL_SCREEN:StageDisplayState.NORMAL);
if(this.stage.displayState==StageDisplayState.FULL_SCREEN){
this.fullscreenbtn.label="返回";
}else{
this.fullscreenbtn.label="全屏";
}
}
stage.displayState = (stage.displayState ==
StageDisplayState.NORMAL?StageDisplayState.FULL_SCREEN:StageDisplayState.NORMAL);
if(this.stage.displayState==StageDisplayState.FULL_SCREEN){
this.fullscreenbtn.label="返回";
}else{
this.fullscreenbtn.label="全屏";
}
}