[Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Kinda feel silly with this question, I can't get fullscreen mode to work: URL: http://clients.kurst.co.uk/ycommaz/12 HTML contains - allowFullScreen:'true' - and the fullscreen code is: private function ToggleFullScreen(event : MenuEvent) : void {

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Ángel Ambrosio Pazo
Set the fullScreen param in boolean not in string. From your HTML code: var params = {}; params.wmode= opaque, params.menu = false; params.allowScriptAccess = 'always'; params.allowFullScreen = true; params.bgcolor = '#ff'; Ángel Ambrosio Interactive Developer angelambro...@gmail.com

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
of America associates) -Original Message- From: flashcoders-boun...@chattyfig.figleaf.com [mailto:flashcoders-boun...@chattyfig.figleaf.com] On Behalf Of Karim Beyrouti Sent: Wednesday, June 23, 2010 10:22 AM To: Flashcoders List Subject: [Flashcoders] FullScreen

RE: [Flashcoders] FullScreen - not working

2010-06-23 Thread Merrill, Jason
...@chattyfig.figleaf.com] On Behalf Of Karim Beyrouti Sent: Wednesday, June 23, 2010 10:22 AM To: Flashcoders List Subject: [Flashcoders] FullScreen - not working Kinda feel silly with this question, I can't get fullscreen mode to work: URL: http://clients.kurst.co.uk/ycommaz/12 HTML contains

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Cheers - however- it does not work Example with Boolean instead of string in param: http://clients.kurst.co.uk/ycommaz/13 - karim On 23 Jun 2010, at 15:32, Ángel Ambrosio Pazo wrote: Set the fullScreen param in boolean not in string. From your HTML code: var params = {};

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Ángel Ambrosio Pazo
Your MenuEvent class extends from Event or from MouseEvent? Mix the two solutions: swfobject param in boolean type and your MenuEvent class extending from MouseEvent. Ángel Ambrosio Interactive Developer angelambro...@gmail.com 2010/6/23 Karim Beyrouti ka...@kurst.co.uk Cheers - however- it

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
also - just for a note - it works in the standalone player, not the browser... - k On 23 Jun 2010, at 16:18, Ángel Ambrosio Pazo wrote: Your MenuEvent class extends from Event or from MouseEvent? Mix the two solutions: swfobject param in boolean type and your MenuEvent class extending

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Done - but still no joy... starting to feel like ..errr... like chucking my laptop out of the window private function ClickFullScreenButton(event : MouseEvent) : void { if (stage.displayState == StageDisplayState.NORMAL) {

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Andrew Kenward
On 23 Jun 2010, at 16:31, flashcoders-requ...@chattyfig.figleaf.com wrote: Re: [Flashcoders] FullScreen - not working ___ Flashcoders mailing list Flashcoders@chattyfig.figleaf.com http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Re: [Flashcoders] FullScreen - not working

2010-06-23 Thread Karim Beyrouti
Fixed - forgot the a param in the SWFObject code: swfobject.embedSWF(YZLoader.swf, flashcontent, 100%, 100%, 10.0.0 , false, flashvars, params ); Again - Thanks for taking the time to reply ... Regards Karim Beyrouti On 23 Jun 2010, at 16:30, Karim Beyrouti wrote: also - just for a