tags:

views:

47

answers:

1

I want full screen view(through code,without pressing F11) of my flex application.Can you please help me?

+4  A: 

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.

CookieOfFortune