|
>> BOX貼り付けですが、上書きでは出来ないのでしょうか。何処かに同じようなこ
>>とが書いてあれば番号を教えて下さい。
>
>BOX貼り付けは、上書きモードでも上書きになりません。
>上書きを実現するマクロを作っている人はいませんでしたっけ?>だれか
こんにちは、ゆうだいです。
個人的に使っているだけですのでバグ有かもしれませんが。。。
お試しください。
======================================================
disabledraw;
beginclipboardread;
##i = 0;
$$str[##i] = getclipboard;
while($$str[##i] != "")
{
##i = ##i + 1;
$$str[##i] = getclipboard;
}
##cnt = 0;
while(##i)
{
$$dum = rightstr($$str[##cnt], 1);
##flg = 0;
if($$dum == "\x0A")
{
##flg = 1;
##len = strlen($$str[##cnt]);
$$str[##cnt] = midstr($$str[##cnt], 0, ##len - 1);
}
moveto x, y; ##x = x; ##y = y;
overwrite $$str[##cnt];
if(##flg == 1)
moveto ##x, ##y + 1;
##i = ##i - 1;
##cnt = ##cnt + 1;
}
enabledraw;
endmacro;
======================================================
|
|