選択範囲を逆方向に選択するマクロ
選択範囲を逆方向に選択します。
選択範囲の修正や、画面に収まらない選択範囲の確認に使うと便利です。
BOX選択でも使用可能ですが、複数選択には非対応です。
ダウンロード
更新履歴
- Version 1.00 (2025/01/28)
- 公開
ソースコード
if (!selecting) {
beep;
endmacro;
}
#xt = seltopx; #yt = seltopy; #xe = selendx; #ye = selendy;
disabledraw;
if (rectselecting) beginrect;
else beginsel;
if (x == #xe && y == #ye) moveto #xt, #yt;
else moveto #xe, #ye;
endsel;
enabledraw;
endmacro;
もともとは別のマクロのおまけ機能だったものです。
HTMLを扱わない人向けに切り出しました。