How to display photos full screen in Flex
I开发者_开发知识库 give users the ability to put album in my Flex application. I want to add a feature when they can click a button to view photos full screen slide show.
How to do that?
To change to full screen mode:
Application.application.stage.displayState = StageDisplayState.FULL_SCREEN;
To switch back to normal mode:
Application.application.stage.displayState = StageDisplayState.NORMAL;
精彩评论