tags:

views:

179

answers:

1

Am working in a player and when am trying to make it to fullscreen the scrubber and volume bar everything become too big in size.

why i cant make it as mormal?

please some one tell me the solution

+3  A: 

You need to set the scaleMode of your movie and align it to the top-left.

stage.displayState = StageDisplayState.FULL_SCREEN;
stage.scaleMode = StageScaleMode.NO_SCALE;
stage.align = StageAlign.TOP_LEFT;
TandemAdam
Thanks man, i tried with this line and it is not taking.stage.displayState = StageDisplayState.FULL_SCREEN;now i will try with your answer.
Ela
Ela
Ela