HSPキーワード検索

提供: MeryWiki
2025年6月30日 (月) 00:42時点におけるMSY-07 (トーク | 投稿記録)による版 (SyntaxHighlightにcopyの追加)
(差分) ← 古い版 | 最新版 (差分) | 新しい版 → (差分)
ナビゲーションに移動 検索に移動

プログラミング言語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;
スポンサーリンク