Click to See Complete Forum and Search --> : How can I turn off the full screen mode without closing the browser window?


Rui M
March 17th, 2002, 07:47 PM
I'm using a javascript that turns the browser window into the full screen mode, without title bar! It's great for my flash apresentation page but, when it gets to the homepage, I want the maximized window again. Can anyone help me with this little problem? Thanks!

websmith99
September 30th, 2002, 10:33 PM
Well, you can reduce the browser window in size so that it doesn't dominate the desktop, but it doesn't contain any toolbar, menubar, statusbar, etc.


<html>
<head>
<script language="JavaScript">
function createwin(){
newWin = window.open("foo.html", "mywin", "fullscreen");
setTimeout("resizewin()", 6000);
}
function resizewin(){
newWin.resizeTo(500,500);
}
</script>
</head>
<body onload="createwin()">
</body>
</html>