开发者

How to display photos full screen in Flex

开发者 https://www.devze.com 2023-01-30 23:55 出处:网络
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.

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;
0

精彩评论

暂无评论...
验证码 换一张
取 消