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

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