home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2002 July / VPR0207A.ISO / OLS / IRVINE0_4_1A / irvine0_4_1a.lzh / scripts / sample / onstartfirstdownload.dms < prev    next >
Text File  |  2002-02-05  |  365b  |  16 lines

  1. /*
  2. スクリプト初期化(更新)時に呼ばれます
  3. guid={A0207E0D-3A49-4903-9FB9-A84C0F20BB56}
  4. caption=OnStartFirstDownloadサンプル
  5. version=0
  6. hint=フォルダの最初のダウンロード開始時に実行します
  7. event=OnStartFirstDownload
  8. match=
  9. author=
  10. */
  11.  
  12. function OnStartFirstDownload(irvine,folder){
  13. //フォルダの最初のダウンロード開始時に呼ばれます
  14.   alert(folder.Name);
  15. }
  16.