|
hajimettさん,
以下のようなマクロではいかがでしょう。
目的のメールを選択して実行してみてください。
//---------------------------------------------------------//
loaddll "TKInfo.dll";
#i = 0;
#n = dllfunc("DisableDraw",0);
setclipboard "";
#n = dllfunc("LockSelection");
while( 1 ) {
#n = dllfunc("EnumSelection", 1);
if( #n == 0 ) break;
#i = #i + 1;
#n = dllfunc( "SelectPane", 2);
gofiletop;
beginsel;
gofileend;
appendcopy;
addclipboard "━━━━━━━━━━━━━━━━━━━━\n";//区切り線
#n = dllfunc( "SetMainWndTop" );
#n = dllfunc( "SelectPane", 1);
}
#n = dllfunc("UnlockSelection", 0);
#n = dllfunc("EnableDraw");
newfile;
#n = dllfunc("SwitchHeaderView", 0);
selectall;
delete;
paste;
replaceallfast "^>.*\\n", "", regular;
endmacro;
//---------------------------------------------------------//
では, (^^)/~
山紫水明
SANSHISUIMEI
|
|