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 doesn't work. So, this can be done, but how?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
In the HTML including the Flash SWF, add the following parameter to your <object> tag:
and the following attribute to your <embed> tag:
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:
|
|||
|
|
|
Check this article on Adobe DevNet: http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html |
|||
|
|
|
I believe it is a simple actionscript command. Source
|
|||
|
|