does any one know how to put internet explorer into full screen mode through JScript or VBScript? (not with the -k prompt)?
Thanx?
Printable View
does any one know how to put internet explorer into full screen mode through JScript or VBScript? (not with the -k prompt)?
Thanx?
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
This will do itCode:<SCRIPT language="Javascript">
function maximize()
{
var Height = screen.height;
var Width =screen.width;
self.moveTo(0,0);
self.resizeTo(Width,Height);
}
</SCRIPT>
Hope it helps
Ian
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
this works well
window.open("yourWebpage.html","","directories=0,scrollbars=1,fullscreen=yes,location=0,menubar=0,st atus=0,titlebar=0")