Displays all window attribute settings, of the named window, when the window was
created with
JSV_openWindow
, or
defined by
JSV_defineWindow
.
JSV_showWindowDefintion(winName)
n/a
The JSV_showWindowDefintion function uses the following arguments.
Argument | Description |
winName |
The name of a window that may have been created using either
JSV_openWindow
or JSV_defineWindow .
|
For the developer to manipulate the window (e.g., programmatically close, blur or focus the window),
the name of the window definition handle is jsvWDH
.
n/a
The following lines of code
function windowTest() {
var myWindow = "Jack_in_the_Box";
JSV_showWindowDefintion(myWindow);
var dummy =
JSV_openWindow(myWindow,
'testpage.htm',
'menubar=1,status=1,scrollbars=1,resizable=1,width=580,height=240,left=40,top=40,screenX=40,screenY=40');
JSV_showWindowDefintion(myWindow);
jsvWDH.focus();
}
produce two new windows when the button is clicked
Copyright © 1999-2000 Roaring Fork Software. All rights reserved.