You may have experienced the frustration of trying to open a window full screen using the documented "fullscreen" code that many sites advocate. Doesn't matter that the durn thing won't work, does it?
This script engine will give you the necessary code to open a new window to full screen size on Netscape® 4.x and 6.x, while opening it almost to full screen (about 50 pixels less than width and height) in Microsoft® Internet Explorer.
To see it in operation, simply click here.
To get full screen coverage in Internet Explorer, you need to put the following code inside the file being opened:
<SCRIPT LANGUAGE=JAVASCRIPT>
<!--
self.moveTo(0,0);
self.resizeTo(screen.availWidth,screen.availHeight);
//-->
</SCRIPT>
|