Thanks Glen! I have to launch my apps from Moodle (LMS). So it opens the apps in the browser. Is it possible to start the app from a startpage.html and then fullscreen without any browser things?
Kind regards Cor -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Glen Pike Sent: dinsdag 4 november 2008 19:43 To: Flash Coders List Subject: Re: [Flashcoders] FULL_SCREEN problem Flash CS3 and AS3 Hi, I don't think you can go fullscreen automatically in the browser - it has to be in response to a Click event / user interaction - this is definitely the case for FP10 as it's one of the new "Security Issues" - not the one that Wordpress and others AJAXians are throwing their toys out of the pram about :) Again, don't think you can ever get rid of the message "Press Esc to exit" either - again, it's a system thing. For non-browser, do the "fscommand fullscreen" thing - I had to do this for AS3 standalone as well as the StageDisplayState before it worked. Glen Cor wrote: > /*My goal: > I want to start my apps fullscreen whitout giving a user the > possibility to scale > or to encounter the app within a browser. > When I CLICK it goes to FULL_SCREEN, but it doesn't work when I try > to do this with other events. > Back to NORMAL does work on MOUSE_MOVE but not going back to > FULL_SCREEN. > How can I set it to FULL_SCREEN automatically? > > And I also would like to get ride of the message "Press Esc to exit > fullscreen mode"? > Every help is welcome! > */ > > //My code in the first and only frame > var screenCheck:Boolean = false; > //< Prevent scaling items on the stage > var swfStage:Stage = this.stage; > swfStage.scaleMode = StageScaleMode.NO_SCALE; > swfStage.align = StageAlign.TOP; > // /> > > //container is a movieclip with a textfield and a shape in it. > container.addEventListener(MouseEvent.MOUSE_MOVE, fullScreenUP); > container.addEventListener(MouseEvent.CLICK, fullScreenUP); > > function fullScreenUP(e:MouseEvent):void { > test.text = "fullScreenUP triggered!"; > if (screenCheck == false) { > stage.displayState = StageDisplayState.FULL_SCREEN; > screenCheck = true; > } else { > stage.displayState = StageDisplayState.NORMAL; > screenCheck = false; > } > } > > /* > Kind regards > Cor > */ > > _______________________________________________ > Flashcoders mailing list > [email protected] > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > > > -- Glen Pike 01326 218440 www.glenpike.co.uk <http://www.glenpike.co.uk> _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

