Thank you. I am not familiair with Javascript, but I will try this. Kind regards. Cor
-----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Carolina Avila Coral Sent: dinsdag 4 november 2008 20:38 To: Flash Coders List Subject: Re: [Flashcoders] FULL_SCREEN problem Flash CS3 and AS3 Hi: I use two html pages to do that, the main page only has the information to open the fullscreen, the second page has the swf link. I hope it be useful for you. main page: <script language="JavaScript" type="text/JavaScript"> <!-- function MachakFull(Ie,other){ //Copyright C 1999 m.milicevic [EMAIL PROTECTED] [EMAIL PROTECTED] x=screen.availWidth; y=screen.availHeight; target = parseFloat(navigator.appVersion.substring(navigator.appVersion.indexOf('.')- 1,navigator.appVersion.length)); if((navigator.appVersion.indexOf("Mac")!=-1) &&(navigator.userAgent.indexOf("MSIE")!=-1) &&(parseInt(navigator.appVersion)==4)) window.open(other,"sub",'scrollbars=yes'); if (target >= 4){ if (navigator.appName=="Netscape"){ var MachakFull=window.open(other,"MachakFull",'scrollbars=yes','width='+x+',heig ht='+y+',top=0,left=0'); MachakFull.moveTo(0,0); MachakFull.resizeTo(x,y);} if (navigator.appName=="Microsoft Internet Explorer") window.open(Ie,"MachakFull","fullscreen=yes"); } else window.open(other,"sub",'scrollbars=yes'); } function Close_Window() { var mywindow=window.self; mywindow.opener=window.self; mywindow.close(); } //--> </script> </head> <body onLoad="MachakFull('index_01.htm','')"> <body onBlur="Close_Window();"> ----- Original Message ----- From: "Cor" <[EMAIL PROTECTED]> To: "'Flash Coders List'" <[email protected]> Sent: Tuesday, November 04, 2008 2:04 PM Subject: RE: [Flashcoders] FULL_SCREEN problem Flash CS3 and AS3 > Thanks Zeh. > > I noticed the displayState description, but it didn't do the trick for me. > > Is it possible to attach a fullscreen function to the ESC message, so when > a > user pushes ESC the app will stay in fullscreen? > > Kind regards > Cor > > -----Original Message----- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Zeh > Fernando > Sent: dinsdag 4 november 2008 20:00 > To: Flash Coders List > Subject: Re: [Flashcoders] FULL_SCREEN problem Flash CS3 and AS3 > > Fullscreen can only be activated on certain events, so you cannot hijack > the > user browser to set the fullscreen mode. > > "Full-screen mode is initiated in response to a mouse click or key press > by > the user; the movie cannot change Stage.displayState without user input" > > http://help.adobe.com/en_US/AS3LCR/Flash_10.0/flash/display/Stage.html#displ > ayState > > If you want the site to work on fullscreen only, then make it in a way > that > when displayState is set to normal, it displays a warning message and a > button that when clicked will get back to fullscreen. > > You cannot get rid of the "ESC" message either. > > > Zeh > > On Tue, Nov 4, 2008 at 3:13 PM, Cor <[EMAIL PROTECTED]> 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 >> > _______________________________________________ > Flashcoders mailing list > [email protected] > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > > _______________________________________________ > Flashcoders mailing list > [email protected] > http://chattyfig.figleaf.com/mailman/listinfo/flashcoders > _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders _______________________________________________ Flashcoders mailing list [email protected] http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

