button

種類---
書式 ウィンドウオブジェクト.add("button",サイズ,ボタン表示文字)
解説
ボタンを作成します。サイズとボタン表示文字のパラメータは省略することができます。
サンプルコード
winObj = new Window("dialog","Sample",[200,150,500,250]);
winObj.add("button",[20,20,100,50],"button");
winObj.show();
実際のスクリプトをダウンロード