|
簡単ネット検索は、検索結果の中にあるURLを一覧表示するだけなので、Yahoo
辞書での検索には向いてないみたいです。
やるとしたら、例えばマクロで、
if( !selecting ) endmacro;
$text = gettext(seltopx, seltopy, selendx, selendy);
$url = "http://dic.yahoo.co.jp/dsearch?&stype=0&dtype=0&p=" + $text;
openbyshell $url;
とか、そういうマクロを使ってブラウザ上で表示させるしか無いかなぁと思い
ます。
それか、
if( !selecting ) endmacro;
$text = gettext(seltopx, seltopy, selendx, selendy);
$url = "http://dic.yahoo.co.jp/dsearch?&stype=0&dtype=0&p=" + $text;
openfile $url;
とすると、Hidemarnet Explorerで開くってことも可能です。
ツールチップ表示はちょっと無理そうな気がします。
|
|