Click to See Complete Forum and Search --> : little help


phreak
01-13-2003, 07:25 PM
i think this is in the right forum... all i need to do is automatically open in full screen mode when a new browser window is opened. thx for your time.

phreak
01-15-2003, 05:43 PM
no, im doing a site full of pictures, and each time they click on a thumbnail i want the new browser window to open in full screen mode.

and im using dreamweaver, how can i impliment that code?

thx again,

Zach Elfers
01-15-2003, 05:46 PM
phreak, you can do it this way:

window.open("","windowName","fullscreen=yes");

That should do what you want. The thing is that this is REALLY fullscreen. It will cover the start menu and won't have a title bar or anything. Because of this, you should add a close window link to the bottom like this:

<input type="button" value="Close" onClick="self.close();">

phreak
01-19-2003, 05:01 PM
thx for the help guys, can that code go anywhere in the body tag?