Hi Pierre, Did you trace the values from stage? you can use percent values for the application and min values to fix your minimum size (1024 * 768), but you also have to look to your index.template.html to check if the size of your flash wrapper is in percentage also because when you have fix values you will not see nothing more. ctrl+ or ctrl- you are just zoom the inernet explorer and not the content of flash player.
> From: [email protected] > To: [email protected] > Subject: Scale flex application > Date: Mon, 19 Aug 2013 16:05:10 -0400 > > I’m new to flex, and I search a way to scale entire flex application (or a > function àuser can zoom with slider the application in the browser to fit). > My application is 1024x 768, good fit on laptop but on the big screen, is > too small. > > > > On my computer the crtl+ or ctrl- work well to zoom on explorer and chrome > (but on some others computers this function not working on flash?? > > Other way, when I use the zoom in the flash context menu, it is to big and > not fit in the windows. > > > > I try this function , but not working when the windows increase. > > > > <s:Application addedToStage="stretchHandler()"/> > > > > private function stretchHandler():void{ > > stage.scaleMode = StageScaleMode.SHOW_ALL; > > stage.align = StageAlign.TOP; > > this.width = stage.stageWidth; > > this.height = stage.stageHeight; > > } > > > > Pierre > > >
