Click to See Complete Forum and Search --> : FullScreen


dudinks
02-05-2003, 07:50 PM
Is there a way to open a HTML page in FullScreen???

(without pop-up a page full screen)

Open the source page in FullScreen...

I hope that there is a way to do this

Thanx...

Zach Elfers
02-05-2003, 09:18 PM
There is no way to do this besides:

<script type="text/JavaScript">
<!--
w = screen.width;
h = screen.height;
window.resizeTo(w + 30, h + 30);
window.moveTo(-15,-15);
//-->
</script>

You may need to mess with those numbers. That will give you a fullscreen effect, but doesn't look very good.