home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2001 June / VPR0106A.BIN / OLS / FSC202 / fsc202.lzh / Hello.fxl < prev    next >
Text File  |  2001-03-14  |  581b  |  34 lines

  1. //       Name : Hello Worldのサンプル
  2. //     Author : y.Fuji
  3. //     Upadte : 01/02/25 13:13:53
  4. //  Generator : FXL designer for FScript v1.00
  5.  
  6. // == 前処理 ==
  7.  
  8.  
  9. // == フォーム作成 ==
  10.     main.add();
  11.     main.taskbar=true;
  12.  
  13. // == オブジェクト生成 ==
  14.     main.width="269";
  15.     main.height="148";
  16.     main.caption="FScript";
  17.  
  18.     main.btn.add(77,35,100,50);  //object
  19.     main.btn.caption="押してね";
  20.  
  21.  
  22. // == 後処理 ==
  23.     main.deffunc.set(macro.body);
  24.     main.bring("center");
  25.     main.visible="true";
  26.  
  27. // == サブルーチン ==
  28. function OnBtnClick1()
  29. {
  30.     alert("hello world!!");
  31. }
  32.  
  33.  
  34.