|
UGSFさん,こんばんは。
》そこで、お願いしたいのですがクリップボード履歴を自動的に
》テキストファイルとして保存する機能を加えて貰えないでしょうか?
どのように利用されるのかちょっとわかりませんが。
次のようなマクロでは用は足りませんか?
保存の仕方などの仕様は,他にもいろいろ工夫できると思います。
//------------------------------------------------------//
#hwnd1 = hidemaruhandle( 0 );
openfile "/h temp.txt";
#hwnd2 = hidemaruhandle( 0 );
setactivehidemaru #hwnd1;
while( 1 ) {
getcliphist #i;
if( !result ) break;
beginclipboardread;
while( 1 ) {
$a = getclipboard;
if( $a == "" ) break;
$s = $s + $a;
}
setactivehidemaru #hwnd2;
insert $s + "\n";
$s = "";
setactivehidemaru #hwnd1;
#i = #i + 1;
}
setactivehidemaru #hwnd2;
SAVEAS;
question "クリップボードの履歴を削除しますか?";
if( result ==yes ) clearcliphist;
endmacro;
//------------------------------------------------------//
では, (^^)/~
山紫水明
|
|