home *** CD-ROM | disk | FTP | other *** search
/ DOS/V Power Report 2002 July / VPR0207A.ISO / OLS / IRVINE0_4_1A / irvine0_4_1a.lzh / scripts / listnavigate.dms < prev    next >
Text File  |  2002-03-06  |  654b  |  30 lines

  1. /*
  2. スクリプト初期化データ
  3. guid={56269A12-DB27-40B2-ACFE-82375B64F006}
  4. caption=URLをブラウザで開く
  5. version=0
  6. hint=選択アイテムのURLをブラウザで開きます
  7. event=OnListMenuClick
  8. match=
  9. author=Wolfy
  10. */
  11.  
  12. function OnListMenuClick(irvine,action){
  13. //キューリストメニューのクリックイベント
  14.   item = new IrvineItem;
  15.   win = new Win32;
  16.     
  17.   for(i = 0; i < irvine.ItemCount; i++){
  18.     if (irvine.GetItemSelected(i)){
  19.       item.data = irvine.GetItemData(i);
  20.       win.shellExecute('',item.url);
  21.       break;
  22.     }
  23.   }
  24. }
  25.  
  26. function OnMenuUpdate(irvine,action){
  27. //メニューの更新イベント
  28.   action.enabled = (irvine.SelectedItemCount > 0);
  29. }
  30.