full screen view of flex application
I want full screen view(through code,without pressing F11) of my flex app开发者_StackOverflow社区lication.Can you please help me?
From Flex Examples.
The line you're interested in is probably this:
Application.application.stage.displayState = StageDisplayState.FULL_SCREEN;
This is what the movie players and such use to get full screen.
精彩评论