Flash in a browser to full screen

后端 未结 2 499
星月不相逢
星月不相逢 2020-12-29 16:34

How can i make my flash applications in a browser in full screen mode? I know that the stage can be put in that mode, but when i run the application in any browser this does

相关标签:
2条回答
  • 2020-12-29 17:20

    I believe it is a simple actionscript command. Source

     fscommand( "fullscreen" ,  "true" ) 
    
    0 讨论(0)
  • 2020-12-29 17:29

    In the HTML including the Flash SWF, add the following parameter to your <object> tag:

    <param name="allowFullScreen" value="true" />
    

    and the following attribute to your <embed> tag:

    allowFullScreen="true"
    

    Or, if you are using SWFObject (as you should be), add the allowFullscreen parameter to your embed code. See the SWFObject documentation for the various ways to this.

    In your Flash/Flex file, you need to provide the user a way to initiate fullscreen mode - you cannot force fullscreen without the user initiating it. Whatever you have the user do, include this code as a response to it:

    stage.displayState = StageDisplayState.FULL_SCREEN; //Flash
    systemManager.stage.displayState = StageDisplayState.FULL_SCREEN; // Flex
    
    0 讨论(0)
提交回复
热议问题