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 / ondonelastdownload.dms < prev    next >
Text File  |  2002-02-05  |  359b  |  16 lines

  1. /*
  2. スクリプト初期化(更新)時に呼ばれます
  3. guid={A607FD8A-C626-4444-975F-5D44781ACEAA}
  4. caption=OnDoneLastDownloadサンプル
  5. version=0
  6. hint=フォルダの最後のダウンロード終了時に実行します
  7. event=OnDoneLastDownload
  8. match=
  9. author=
  10. */
  11.  
  12. function OnDoneLastDownload(irvine,folder){
  13. //フォルダの最後のダウンロード終了時に呼ばれます
  14.   alert(folder.Path);
  15. }
  16.