|
ぷはぁ〜さんこんにちは(^^) noro です。
少々動作が鈍くさい感じですが、以下のマクロで、単語単位で選択範囲を広
げたり縮めたりできると思います。ただ、単語の区切りとして認識する文字が
変わるわけじゃないので、これでいいのかなぁ?って感じですけど(^^;)
もし良かったら、試してみて下さい(^^)
−−−−−−−−−−−−キリトリセン−−−−−−−−−−−−−−
if ( ! selecting ) {
selectword;
}
loop:
menu "( &A ) 左の単語も選択に入れる",
"( &Z ) 左の単語を選択から外す",
"( &D ) 左の単語も選択に入れる",
"( &C ) 左の単語を選択から外す",
"(& スペース )終了";
if ( result == 1 ) call left seltopx,seltopy,selendx,selendy;
else if ( result == 2 ) call right seltopx,seltopy,selendx,selendy;
else if ( result == 3 ) call right selendx,selendy,seltopx,seltopy;
else if ( result == 4 ) call left selendx,selendy,seltopx,seltopy;
else if ( result == 5 || result == 0 ) endmacro;
goto loop;
left:
moveto ##1-1,##2;
gowordtop;
beginsel;
moveto ##3,##4;
return;
right:
moveto ##1,##2;
gowordend;
beginsel;
moveto ##3,##4;
return;
−−−−−−−−−−−−キリトリセン−−−−−−−−−−−−−−
ではでは…
|
|