こんな風なの(↓)を作ってみましたが、
Ctrl+Z で途中経過が出てきてしまうといった副作用があります。
副作用なしで実現する方法はありますでしょうか?
// SetClip( str )関数は
// クリップボードに str を入れる。
//
// * Ctrl+Z で途中経過が出てきてしまう。
//
function SetClip( str ) {
Editor.MoveHistSet();
Editor.GoLineTop(0);
Editor.InsText( str )
Editor.BeginSelect();
Editor.GoLineTop(0);
Editor.Cut();
Editor.MoveHistPrev();
}
SetClip( "test" );
* ステータスバーへの書込は、見当がつかない・・。だれかお願いいたします。