Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread Jim Berkey
My understanding is that it is not possible to make the current browser window fullscreen via any code. It is possible to open a new browser window full screen via pop-up, but any browser pop-up blockers would stop this ( google for 'javascript fullscreen') - so in effect, there is no

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread Ian Thomas
But if you're running offline, you could use a swf2exe tool such as SWFStudio, Screenweaver or Zinc. HTH, Ian On 7/7/06, Jim Berkey [EMAIL PROTECTED] wrote: My understanding is that it is not possible to make the current browser window fullscreen via any code. It is possible to open a new

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread John Hart
This guy has the best solution there is for your full screen problem give it a try :) http://www.flash-db.com/PopUp/PopUp.html - Original Message - From: 8ball Developer [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, July 07, 2006 10:34

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread John Hart
Oops.. for the full effect to work on any resolution leave the field Width and Height blank - Original Message - From: 8ball Developer [EMAIL PROTECTED] To: Flashcoders mailing list flashcoders@chattyfig.figleaf.com Sent: Friday, July 07, 2006 10:34 AM Subject: [Flashcoders] Fullscreen

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread David Rorex
You could always tell your user to press F11 -- (shortcut key on firefox and IE for fullscreen...even gets rid of the titlebar and start bar) -David R On 7/7/06, John Hart [EMAIL PROTECTED] wrote: Oops.. for the full effect to work on any resolution leave the field Width and Height blank -

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread 8ball Developer
Thanks. But this is good for max not fullscreen. On 7/7/06, John Hart [EMAIL PROTECTED] wrote: This guy has the best solution there is for your full screen problem give it a try :) http://www.flash-db.com/PopUp/PopUp.html - Original Message - From: 8ball Developer [EMAIL PROTECTED]

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread 8ball Developer
I don't want to send .exe around. I have 1 html, 1 swf and to represent it in fullscreen mode. On 7/7/06, Ian Thomas [EMAIL PROTECTED] wrote: But if you're running offline, you could use a swf2exe tool such as SWFStudio, Screenweaver or Zinc. HTH, Ian On 7/7/06, Jim Berkey [EMAIL

RE: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread Steven Sacks | BLITZ
: Friday, July 07, 2006 10:26 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Fullscreen from SWF I don't want to send .exe around. I have 1 html, 1 swf and to represent it in fullscreen mode. On 7/7/06, Ian Thomas [EMAIL PROTECTED] wrote: But if you're running offline, you could

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread 8ball Developer
-551-0200 x209 -Original Message- From: [EMAIL PROTECTED] [mailto:flashcoders- [EMAIL PROTECTED] On Behalf Of 8ball Developer Sent: Friday, July 07, 2006 10:26 AM To: Flashcoders mailing list Subject: Re: [Flashcoders] Fullscreen from SWF I don't want to send .exe around. I have 1

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread MetaArt
you can use a 'dirty' solution: launch first an empty window with meta http-equiv=refresh content=0 in the head tag, and from this open your fullscreen window. workin' offline, this will be so fast that users can't realize it... * Enrico Tomaselli * web designer [EMAIL PROTECTED]

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread 8ball Developer
Enrico, Can you explain more? Wouldn't the refresh loop then? Thanks On 7/7/06, MetaArt [EMAIL PROTECTED] wrote: you can use a 'dirty' solution: launch first an empty window with meta http-equiv=refresh content=0 in the head tag, and from this open your fullscreen window. workin' offline,

Re: [Flashcoders] Fullscreen from SWF

2006-07-07 Thread MetaArt
You can use this: meta http-equiv=refresh content=0;URL=yourfullscreen.htm where 'yourfullscreen.htm' is the page that you want open with fullscreen JavaScript inside. In this way, you first launch an empty window of browser (maybe by an autoexec, I suppose) where there is the above code inside