Re: [Flashcoders] full screen window

2007-01-31 Thread Henry Cooke


if opening a fullscreen window on a click is possible then y can't on
onLoad event.



It's a matter of user experience. If they've clicked a link, you can be
pretty sure they wanted the popup. If you're doing it in an onLoad:
1) the user hasn't asked for it
2) it could be used to mislead the user (imagine opening a fullscreen window
which looked exactly like a maximised browser, but every click redirected to
evil spyware... it has been done, apparently). This is why the security
restrictions are in place.

h.

On 31/01/07, Ravi Marella [EMAIL PROTECTED] wrote:


Thanx for all the replies, but I understood that I can't do wat I
exactly want to i.e. opening a popup window by itself because of so
called security resturictions; but wat I really don't understand is if
opening a fullscreen window on a click is possible then y can't on
onLoad event...i mean it doesn't make user any difference whether the
window has become fullscreen because of a click or onLoad...


RaviKiran Marella






-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Ham
Sent: Tuesday, January 30, 2007 10:16 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] full screen window

The best user experience would be two windows: have a launch page
with a link that would open a new JavaScript child window, and tell
the user that the course is going to open in fullscreen. Then you can
control the size and properties of the window as much as you like,
and the user doesn't get the surprise of  his/her browser opening way
up unexpectedly.

OK
DAH


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


[Flashcoders] full screen window

2007-01-30 Thread Ravi Marella
Hi all,

This might be simple but I'm trying this from last 4 hours and got no
answer anywhere.

How can you open a window in full screen mode using JavaScript? I want
to open the same window in full screen mode, I mean with out using any
other window to launch this full screen window or any button to launch
it i.e. something to do with the onLoad event of the body tag.  Thanks
for replies in advance.

cheers,

Ravi 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] full screen window

2007-01-30 Thread David Brunswick
This is for a swf 
http://www.kirupa.com/developer/mx2004/fullscreen.htm 
and for a .exe add this to the first frame

fscommand(fullscreen, true);

David Brunswick
Senior Multimedia Developer/OLP Administrator
FedEx Customer Information Services
Customer Service Organizational Learning
901-434-6605
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ravi Marella
Sent: Tuesday, January 30, 2007 9:37 AM
To: Flashcoders mailing list
Subject: [Flashcoders] full screen window

Hi all,

This might be simple but I'm trying this from last 4 hours and got no
answer anywhere.

How can you open a window in full screen mode using JavaScript? I want
to open the same window in full screen mode, I mean with out using any
other window to launch this full screen window or any button to launch
it i.e. something to do with the onLoad event of the body tag.  Thanks
for replies in advance.

cheers,

Ravi 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] full screen window

2007-01-30 Thread Danny Kodicek
  This might be simple but I'm trying this from last 4 hours 
 and got no answer anywhere.
 
 How can you open a window in full screen mode using 
 JavaScript? I want to open the same window in full screen 
 mode, I mean with out using any other window to launch this 
 full screen window or any button to launch it i.e. something 
 to do with the onLoad event of the body tag.  Thanks for 
 replies in advance.

Can't be done AFAIK. I'm pretty sure you have to launch a new window (which
is a good thing, as no one wants browsers to be able to resize themselves to
fullscreen)

Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] full screen window

2007-01-30 Thread David Brunswick
Or this

html
body
script language=JavaScript
!--
window.open (http://yahoo.com;, ,fullscreen=yes)
--
/script
/body
/html

David Brunswick
Senior Multimedia Developer/OLP Administrator
FedEx Customer Information Services
Customer Service Organizational Learning
901-434-6605
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ravi Marella
Sent: Tuesday, January 30, 2007 9:37 AM
To: Flashcoders mailing list
Subject: [Flashcoders] full screen window

Hi all,

This might be simple but I'm trying this from last 4 hours and got no
answer anywhere.

How can you open a window in full screen mode using JavaScript? I want
to open the same window in full screen mode, I mean with out using any
other window to launch this full screen window or any button to launch
it i.e. something to do with the onLoad event of the body tag.  Thanks
for replies in advance.

cheers,

Ravi 

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] full screen window

2007-01-30 Thread Henry Cooke

Ravi,
It's a tricky one, most modern browsers are specifically designed not to
allow you to size up to fullscreen onLoad, as it was being abused by
scammers and such.

http://developer.mozilla.org/en/docs/DOM:window.open#Note_on_position_and_dimension_error_correction

Probably explains why you've been having trouble making it work ;)

Sorry to be the bearer of bad news...

h.

On 30/01/07, Ravi Marella [EMAIL PROTECTED] wrote:


Hi all,

This might be simple but I'm trying this from last 4 hours and got no
answer anywhere.

How can you open a window in full screen mode using JavaScript? I want
to open the same window in full screen mode, I mean with out using any
other window to launch this full screen window or any button to launch
it i.e. something to do with the onLoad event of the body tag.  Thanks
for replies in advance.

cheers,

Ravi

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] full screen window

2007-01-30 Thread Ravi Marella
I cant afford two windows as the window which I have to open will get
opened by a link on client's site which will just launch this window and
so if I use another window, it'll make two popups opening using a single
link which is not desired.
I got this code on net:
self.moveTo(0,0);  
self.resizeTo(screen.width,screen.height);
But this doesn't hide the standard buttons, address and status bar.

 


RaviKiran Marella


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Danny
Kodicek
Sent: Tuesday, January 30, 2007 9:17 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] full screen window

  This might be simple but I'm trying this from last 4 hours 
 and got no answer anywhere.
 
 How can you open a window in full screen mode using 
 JavaScript? I want to open the same window in full screen 
 mode, I mean with out using any other window to launch this 
 full screen window or any button to launch it i.e. something 
 to do with the onLoad event of the body tag.  Thanks for 
 replies in advance.

Can't be done AFAIK. I'm pretty sure you have to launch a new window
(which
is a good thing, as no one wants browsers to be able to resize
themselves to
fullscreen)

Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] full screen window

2007-01-30 Thread Ravi Marella


Then...can we atleast hide the status bar/address bar and other standard
buttons of the same window?

RaviKiran Marella


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Henry
Cooke
Sent: Tuesday, January 30, 2007 9:20 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] full screen window

Ravi,
It's a tricky one, most modern browsers are specifically designed not to
allow you to size up to fullscreen onLoad, as it was being abused by
scammers and such.

http://developer.mozilla.org/en/docs/DOM:window.open#Note_on_position_an
d_dimension_error_correction

Probably explains why you've been having trouble making it work ;)

Sorry to be the bearer of bad news...

h.

On 30/01/07, Ravi Marella [EMAIL PROTECTED] wrote:

 Hi all,

 This might be simple but I'm trying this from last 4 hours and got no
 answer anywhere.

 How can you open a window in full screen mode using JavaScript? I want
 to open the same window in full screen mode, I mean with out using any
 other window to launch this full screen window or any button to launch
 it i.e. something to do with the onLoad event of the body tag.  Thanks
 for replies in advance.

 cheers,

 Ravi

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] full screen window

2007-01-30 Thread eric dolecki

http://www.adobe.com/devnet/flashplayer/articles/full_screen_mode.html

- ericd.

On 1/30/07, Ravi Marella [EMAIL PROTECTED] wrote:




Then...can we atleast hide the status bar/address bar and other standard
buttons of the same window?

RaviKiran Marella


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Henry
Cooke
Sent: Tuesday, January 30, 2007 9:20 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] full screen window

Ravi,
It's a tricky one, most modern browsers are specifically designed not to
allow you to size up to fullscreen onLoad, as it was being abused by
scammers and such.

http://developer.mozilla.org/en/docs/DOM:window.open#Note_on_position_an
d_dimension_error_correction

Probably explains why you've been having trouble making it work ;)

Sorry to be the bearer of bad news...

h.

On 30/01/07, Ravi Marella [EMAIL PROTECTED] wrote:

 Hi all,

 This might be simple but I'm trying this from last 4 hours and got no
 answer anywhere.

 How can you open a window in full screen mode using JavaScript? I want
 to open the same window in full screen mode, I mean with out using any
 other window to launch this full screen window or any button to launch
 it i.e. something to do with the onLoad event of the body tag.  Thanks
 for replies in advance.

 cheers,

 Ravi

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com





--
eric e. dolecki
senior interactive engineer
http://www.ericd.net
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] full screen window

2007-01-30 Thread Henry Cooke

I'm no JavaScript coder, but I don't think you can change the properties of
an already open window.

Not sure though, Google about a bit, see what you can find..

h.

On 30/01/07, Ravi Marella [EMAIL PROTECTED] wrote:




Then...can we atleast hide the status bar/address bar and other standard
buttons of the same window?

RaviKiran Marella


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Henry
Cooke
Sent: Tuesday, January 30, 2007 9:20 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] full screen window

Ravi,
It's a tricky one, most modern browsers are specifically designed not to
allow you to size up to fullscreen onLoad, as it was being abused by
scammers and such.

http://developer.mozilla.org/en/docs/DOM:window.open#Note_on_position_an
d_dimension_error_correction

Probably explains why you've been having trouble making it work ;)

Sorry to be the bearer of bad news...

h.

On 30/01/07, Ravi Marella [EMAIL PROTECTED] wrote:

 Hi all,

 This might be simple but I'm trying this from last 4 hours and got no
 answer anywhere.

 How can you open a window in full screen mode using JavaScript? I want
 to open the same window in full screen mode, I mean with out using any
 other window to launch this full screen window or any button to launch
 it i.e. something to do with the onLoad event of the body tag.  Thanks
 for replies in advance.

 cheers,

 Ravi

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] full screen window

2007-01-30 Thread David Brunswick
You state there is a link on a page which launches the window then use this

html
body
script
!--
function fullwin(){
window.open(yourswf.html,,fullscreen,scrollbars)
}
//--
/script


A HREF=javascript:onClick=fullwin() Minimize/A



/body
/html




David Brunswick
Senior Multimedia Developer/OLP Administrator
FedEx Customer Information Services
Customer Service Organizational Learning
901-434-6605
 

-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ravi Marella
Sent: Tuesday, January 30, 2007 9:58 AM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] full screen window



Then...can we atleast hide the status bar/address bar and other standard
buttons of the same window?

RaviKiran Marella


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Henry
Cooke
Sent: Tuesday, January 30, 2007 9:20 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] full screen window

Ravi,
It's a tricky one, most modern browsers are specifically designed not to
allow you to size up to fullscreen onLoad, as it was being abused by
scammers and such.

http://developer.mozilla.org/en/docs/DOM:window.open#Note_on_position_an
d_dimension_error_correction

Probably explains why you've been having trouble making it work ;)

Sorry to be the bearer of bad news...

h.

On 30/01/07, Ravi Marella [EMAIL PROTECTED] wrote:

 Hi all,

 This might be simple but I'm trying this from last 4 hours and got no
 answer anywhere.

 How can you open a window in full screen mode using JavaScript? I want
 to open the same window in full screen mode, I mean with out using any
 other window to launch this full screen window or any button to launch
 it i.e. something to do with the onLoad event of the body tag.  Thanks
 for replies in advance.

 cheers,

 Ravi

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] full screen window

2007-01-30 Thread Jah

i think this is still in the realm of techniques illegitimate designs
used in the early days of the web. additionally... you should probably
consider how many users won't return to your site bc you've messed
with thier primary browser settings, as most users might not have the
knowledge to turn all those things you're turning off, back on.

On 1/30/07, Ravi Marella [EMAIL PROTECTED] wrote:



Then...can we atleast hide the status bar/address bar and other standard
buttons of the same window?

RaviKiran Marella


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Henry
Cooke
Sent: Tuesday, January 30, 2007 9:20 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] full screen window

Ravi,
It's a tricky one, most modern browsers are specifically designed not to
allow you to size up to fullscreen onLoad, as it was being abused by
scammers and such.

http://developer.mozilla.org/en/docs/DOM:window.open#Note_on_position_an
d_dimension_error_correction

Probably explains why you've been having trouble making it work ;)

Sorry to be the bearer of bad news...

h.

On 30/01/07, Ravi Marella [EMAIL PROTECTED] wrote:

 Hi all,

 This might be simple but I'm trying this from last 4 hours and got no
 answer anywhere.

 How can you open a window in full screen mode using JavaScript? I want
 to open the same window in full screen mode, I mean with out using any
 other window to launch this full screen window or any button to launch
 it i.e. something to do with the onLoad event of the body tag.  Thanks
 for replies in advance.

 cheers,

 Ravi

 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] full screen window

2007-01-30 Thread Ravi Marella
I'll tell you the exact scenario I'm facing:
I'm making a course in flash MX which has to be uploaded on Client's
LMS. The course needs to be compatible with 800*600 screen resolution,
which we have achieved. but the client can't see the course completely
coz the toolbars are not hidden on the client's browser. So I'm trying
to launch the course in a fullscreen. I can do this using two windows
but just wanted to know if this can be done using a single window. if
this is not possible then either I've to add another page which will
make two popups or ask the client to F11 every time.


 


RaviKiran Marella



-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Jah
Sent: Tuesday, January 30, 2007 9:42 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] full screen window

i think this is still in the realm of techniques illegitimate designs
used in the early days of the web. additionally... you should probably
consider how many users won't return to your site bc you've messed
with thier primary browser settings, as most users might not have the
knowledge to turn all those things you're turning off, back on.

On 1/30/07, Ravi Marella [EMAIL PROTECTED] wrote:


 Then...can we atleast hide the status bar/address bar and other
standard
 buttons of the same window?

 RaviKiran Marella


 -Original Message-
 From: [EMAIL PROTECTED]
 [mailto:[EMAIL PROTECTED] On Behalf Of Henry
 Cooke
 Sent: Tuesday, January 30, 2007 9:20 PM
 To: Flashcoders mailing list
 Subject: Re: [Flashcoders] full screen window

 Ravi,
 It's a tricky one, most modern browsers are specifically designed not
to
 allow you to size up to fullscreen onLoad, as it was being abused by
 scammers and such.


http://developer.mozilla.org/en/docs/DOM:window.open#Note_on_position_an
 d_dimension_error_correction

 Probably explains why you've been having trouble making it work ;)

 Sorry to be the bearer of bad news...

 h.

 On 30/01/07, Ravi Marella [EMAIL PROTECTED] wrote:
 
  Hi all,
 
  This might be simple but I'm trying this from last 4 hours and got
no
  answer anywhere.
 
  How can you open a window in full screen mode using JavaScript? I
want
  to open the same window in full screen mode, I mean with out using
any
  other window to launch this full screen window or any button to
launch
  it i.e. something to do with the onLoad event of the body tag.
Thanks
  for replies in advance.
 
  cheers,
 
  Ravi
 
  ___
  Flashcoders@chattyfig.figleaf.com
  To change your subscription options or search the archive:
  http://chattyfig.figleaf.com/mailman/listinfo/flashcoders
 
  Brought to you by Fig Leaf Software
  Premier Authorized Adobe Consulting and Training
  http://www.figleaf.com
  http://training.figleaf.com
 
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com
 ___
 Flashcoders@chattyfig.figleaf.com
 To change your subscription options or search the archive:
 http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

 Brought to you by Fig Leaf Software
 Premier Authorized Adobe Consulting and Training
 http://www.figleaf.com
 http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


Re: [Flashcoders] full screen window

2007-01-30 Thread David Ham
The best user experience would be two windows: have a launch page  
with a link that would open a new JavaScript child window, and tell  
the user that the course is going to open in fullscreen. Then you can  
control the size and properties of the window as much as you like,  
and the user doesn't get the surprise of  his/her browser opening way  
up unexpectedly.


OK
DAH


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] full screen window

2007-01-30 Thread Joey Rivera

If I understand correctly, you want users to click on a link that then opens
up a new window that is fullscreen and closes the previous window that is
now behind.

This is what we do:

script language=Javascript
function openWindow()
{   

window.open(**URL**,NewWindow,width=+screen.width+,height=+screen.he
ight+,left = 0,top =
0,fullscreen=yes,navigationbar=no,toolbar=no,location=no,directories=no,stat
us=no,menubar=no,scrollbars=no,resizable=no);  
closeWindow();
}

function closeWindow()
{
window.open('','_parent','');
window.opener = window;
window.close();
}
/script

After playing around with many options, this code seems to work well for us.
Remember, fullscreen is not really fullscreen anymore.  You still have some
browser chrome left behind and in IE 7 there's a bar left behind in
fullscreen that you can't remove by default.  So unless you plan to scale
your content, adjust the area size of your file accordingly.


Joey Rivera
Flash Developer
iLearn, Inc.
 
-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Ravi Marella
Sent: Tuesday, January 30, 2007 10:56 AM
To: Flashcoders mailing list
Subject: RE: [Flashcoders] full screen window

I cant afford two windows as the window which I have to open will get
opened by a link on client's site which will just launch this window and
so if I use another window, it'll make two popups opening using a single
link which is not desired.
I got this code on net:
self.moveTo(0,0);  
self.resizeTo(screen.width,screen.height);
But this doesn't hide the standard buttons, address and status bar.

 


RaviKiran Marella


-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of Danny
Kodicek
Sent: Tuesday, January 30, 2007 9:17 PM
To: 'Flashcoders mailing list'
Subject: RE: [Flashcoders] full screen window

  This might be simple but I'm trying this from last 4 hours 
 and got no answer anywhere.
 
 How can you open a window in full screen mode using 
 JavaScript? I want to open the same window in full screen 
 mode, I mean with out using any other window to launch this 
 full screen window or any button to launch it i.e. something 
 to do with the onLoad event of the body tag.  Thanks for 
 replies in advance.

Can't be done AFAIK. I'm pretty sure you have to launch a new window
(which
is a good thing, as no one wants browsers to be able to resize
themselves to
fullscreen)

Danny

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com

___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com


RE: [Flashcoders] full screen window

2007-01-30 Thread Ravi Marella
Thanx for all the replies, but I understood that I can't do wat I
exactly want to i.e. opening a popup window by itself because of so
called security resturictions; but wat I really don't understand is if
opening a fullscreen window on a click is possible then y can't on
onLoad event...i mean it doesn't make user any difference whether the
window has become fullscreen because of a click or onLoad...


RaviKiran Marella

 




-Original Message-
From: [EMAIL PROTECTED]
[mailto:[EMAIL PROTECTED] On Behalf Of David
Ham
Sent: Tuesday, January 30, 2007 10:16 PM
To: Flashcoders mailing list
Subject: Re: [Flashcoders] full screen window

The best user experience would be two windows: have a launch page  
with a link that would open a new JavaScript child window, and tell  
the user that the course is going to open in fullscreen. Then you can  
control the size and properties of the window as much as you like,  
and the user doesn't get the surprise of  his/her browser opening way  
up unexpectedly.

OK
DAH


___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com
___
Flashcoders@chattyfig.figleaf.com
To change your subscription options or search the archive:
http://chattyfig.figleaf.com/mailman/listinfo/flashcoders

Brought to you by Fig Leaf Software
Premier Authorized Adobe Consulting and Training
http://www.figleaf.com
http://training.figleaf.com