HSPキーワード検索

2019年8月29日 (木) 10:38時点におけるSSSE (トーク | 投稿記録)による版

プログラミング言語HSP(Hot Soup Processor)のHSPキーワード検索機能を再現しました。
カーソル付近の単語をhdl.exe(HSP Docs Library)で検索します。

ダウンロード

ソースコード

#title="HSPキーワード検索";
///////////////////////////////
//選択処理
///////////////////////////////
//カーソル位置保存
CursorPointX=document.selection.GetActivePointX(mePosView);
CursorPointY=document.selection.GetActivePointY(mePosView);
//単語選択
document.selection.SelectWord();
//選択文字取得
var str=document.selection.Text;
//カーソル位置復元
document.selection.SetActivePoint(mePosView,CursorPointX,CursorPointY,false);
///////////////////////////////
//ActiveX処理
///////////////////////////////
//オブジェクト取得
var obj=new ActiveXObject("WScript.Shell");
//exe起動
obj.Run("C:/hsp351p/hdl.exe "+str);
//オブジェクト解放
obj=null;
スポンサーリンク