I want to be able to open Netscape & Explorer in full screen mode.
I have been trying to use the script and link below by putting the link into the <Body> as an onLoad (<BODY bgcolor="#ffffff" TOPMARGIN=100 onLoad="javascript:void(0);fullScreen('demo1.htm')">
; however, it just keeps running opening mulitple windows and I have to use Esc and then back out of it with Ctrl-Alt-Del.
<!-- Begin
function fullScreen(theURL) {
window.open(theURL, '', 'fullscreen=yes, scrollbars=auto');
}
// End -->
</script>
</HEAD>
I'm not sure I completely understand what you're tyring to do, but it seems like the problem is that the command to open the page in a fullscreen window is in the <body OnLoad> section. So the procedure repeats itself each time it loads a new version of demo1.htm. Perhaps a solution would be to have TWO pages. The first one (redirect.htm say) would be an almost empty page, just having the function fullScreen() in the <head> and the tag:
It looks like you are trying to make this happen when a user visits your site or page. If that is the case, I just wanted to let you know that many many people will find that quite annoying because it makes them feel like you are controlling their computer and they have trouble getting the window to close unless they have some knowledge of keyboard shortcuts. I just wanted to make sure you were aware of that.
Bookmarks