Click to See Complete Forum and Search --> : I need show the first page on FullScreeen


jedifra
10-02-2003, 02:04 PM
I need to replicate the Internet Explorer F11 action when my page is open

How Can I do it? Are there any properties for that. I want not use the window.open method. I need show the first page on FullScreeen

Thank

pcolafl
10-02-2003, 02:14 PM
<SCRIPT language="JavaScript">
self.moveTo(0,0);self.resizeTo(screen.availWidth,screen.availHeight);</SCRIPT>

jedifra
10-02-2003, 03:34 PM
thank you. You safe me

snoopy0877
10-03-2003, 11:36 PM
I have test with that script but it's not done in IE6/NS6.1 ???

<html>
<head>
<title>Full Screen</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<SCRIPT language="JavaScript">
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);
</SCRIPT>
<body>

</body>
</html>

James L.
10-04-2003, 03:49 PM
A word of caution with this.... MANY people HATE it when all of a sudden a website takes control of the browser window and resizes it.

I know for me, as soon as that happens I usually just close the window and go somewhere else. People set up their desktop and windows the way THEY want them...if they want it bigger, then they can make it bigger themselves.

...just a thought.

James L.
10-04-2003, 03:53 PM
On an unrelated note, the "language" attribute is not officially recognized by the HTML 4 specification.

You should use the type attribute instead:

<script type="text/javascript">

spykemitchell
10-04-2003, 04:20 PM
I am after a script ike this but it did not seem to work,

I want it so that when the user visits the webpage it automatically changes the size and settings of the window

e.g.

Resizes to 640x480, Has no Menus / Buttons, No Taskbar, No Scroll Bars etc... Like a fully customised popup but it just appears when the address is typed into the address field.

Can you help?