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 / ondonethread.dms < prev    next >
Text File  |  2002-04-10  |  626b  |  26 lines

  1. /*
  2. スクリプト初期化(更新)時に呼ばれます
  3. guid={E6D3141A-9B02-4426-B9BC-E37AF193E100}
  4. caption=OnDoneThreadサンプル
  5. version=0
  6. hint=ダウンロードスレッド終了時に実行します
  7. event=OnDoneThread
  8. match=
  9. author=
  10. */
  11.  
  12. function OnDoneThread(success,filename,urlinfo,item,folder,options){
  13. //ダウンロードスレッド終了に呼ばれます
  14.   print('OnDoneThread');
  15.   //print(success);
  16.   //print(filename);  
  17.   //print(urlinfo);
  18.   //print(urlinfo.getProperties());
  19.   //print(item);
  20.   //print(item.getProperties());
  21.   //print(folder);
  22.   //print(folder.getProperties());
  23.   //print(options);
  24.   //print(options.getProperties());
  25. }
  26.