PDA

View Full Version : Script to open web page in full screen mode


kenguild
06-26-2002, 11:41 PM
I need a script to have my stand alone intranet web page open in the full screen mode (like F11). I tried the script called chromeless windows but keep getting script errors (object expected) Can somebody help?

adios
06-26-2002, 11:51 PM
Intranet, eh? IE?

http://www.dynamicdrive.com/dynamicindex8/window1.htm

kenguild
06-27-2002, 12:15 AM
That works but can you guide me on how to use that code on a touchscreen where all you do is touch an image and it opens to the html doc.
for example
<a href="C:/wizard/autohaus.html"> <img src="file:///C:/wizard/autohaus.jpg" width="100" height="90" border="2">

whammy
06-27-2002, 12:18 AM
If it's on an intranet, you may be able to rename the file to .hta and you can open a fullscreen window (and close the original) with no warnings.

I'm not sure though, since I've only tested it on my local hard drive.

Good luck!

adios
06-27-2002, 12:49 AM
<a href="C:/wizard/autohaus.html"
onclick="window.open(this.href,'','fullscreen');return false;">
<img src="file:///C:/wizard/autohaus.jpg" width="100" height="90" border="0">
</a>

I'm no authority on how touchscreens manage user events, though. Maybe there's an ontouch handler....