Windows.closeAll()
win02 = new Window("win02", {
title: "ウィンドウ02", className: "dialog", top:150, left:120, zIndex: 101,
width:320, height:240, resizable: true, draggable:true });
win02.setDestroyOnClose();
win02.show();
win03 = new Window("win03", {
title: "ウィンドウ03", className: "dialog", top:200, left:180, zIndex: 102,
width:320, height:240, resizable: true, draggable:true });
win03.setDestroyOnClose();
win03.show();
}
function closeAll(){
Windows.closeAll();
}
// --></script>
</head>
<body>
<h1>全てのウィンドウを閉じる</h1>
<form>
<input type="button" value="閉じる" onClick="closeAll()">
</form>
</body>
</html>