[removed] Automatically maximize browser window and switch to full screen mode?

前端 未结 5 1065
渐次进展
渐次进展 2021-01-22 10:55

I am working on a Flash app that is 900x700 pixels. When viewed in misc. browsers at 1024x768, the browser chrome causes robs too much of the vertical space and the app appears

5条回答
  •  时光取名叫无心
    2021-01-22 11:37

    The window size can be altered by using:

    window.moveTo(0, 0);
    window.resizeTo(screen.availWidth, screen.availHeight);
    

提交回复
热议问题