| Author |
Window Sizing
|
RichardW Winch
Greenhorn
Joined: Sep 23, 2003
Posts: 3
|
|
The following code opens 2 PopUp windows; Problem is on the "topwindowheight", I can't seem to get the window to come up with less height regardless of the size specified in the script. Any Ideas?? <script language="JavaScript"> <!-- function openWindow() { if (window.screen) { windowwidth = (window.screen.availWidth); topwindowheight = (5); // Even if I put 1 window opens at same size bottomwindowheight = (window.screen.availHeight); } window.open('about:blank','windowNameBottom','width='+windowwidth+',height='+bottomwindowheight+',screenX=0,screenY=0,top=0,left=0,resizable=yes,menubar=yes,location=yes,toolbar=yes,scrollbars=yes,status=yes'); window.open('about:blank','windowNameTop','width='+windowwidth+',height='+topwindowheight+',screenX=0,screenY=0,top=0,left=0,resizable=no,menubar=no,location=no,toolbar=no,scrollbars=no,status=no'); } //--></script>
|
 |
Eric Pascarello
author
Rancher
Joined: Nov 08, 2001
Posts: 15357
|
|
min. size of a window is 100px... topwindowheight = 200px; did you change this one too?? bottomwindowheight = (window.screen.availHeight); [ September 25, 2003: Message edited by: Eric Pascarello ]
|
 |
 |
|
|
subject: Window Sizing
|
|
|