Click to See Complete Forum and Search --> : fullscreen in IE?
()InDiGo)))>
Aug 23rd, 2000, 04:16 AM
does any one know how to put internet explorer into full screen mode through JScript or VBScript? (not with the -k prompt)?
Thanx?
Ianpbaker
Aug 23rd, 2000, 06:12 AM
Hi ()InDiGo)))>
There is no simple flipto full screen in javascript but you can do it by using finding out the resolution of the screen, move the browser to 0,0 and then making it the same size as the screen. use the following function to do this
<SCRIPT language="Javascript">
function maximize()
{
var Height = screen.height;
var Width =screen.width;
self.moveTo(0,0);
self.resizeTo(Width,Height);
}
</SCRIPT>
This will do it
Hope it helps
Ian
()InDiGo)))>
Aug 23rd, 2000, 07:24 AM
there is a function called "put_fullscreen" in msdn.microsoft.com, but i couldn't get it to work, as i know practily nothing about Javascript (except the C bits :).
but i guess i'll use your method... :)
thanx
stefank
Aug 24th, 2000, 07:42 AM
this works well
window.open("yourWebpage.html","","directories=0,scrollbars=1,fullscreen=yes,location=0,menubar=0,status=0,titlebar=0")
vbforums.com
Copyright Internet.com Inc., All Rights Reserved.