Flex 全屏显示方法

时间:2024-08-02 08:35:14

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="全屏";   
              }   
                
        } 

原文地址:http://blog.sina.com.cn/s/blog_5fc933730100iigh.html