|
マイケル2です。
自己レスです。私めの 昨日 午後 4時42分 の
“選択メールがおかしくなる”について:
====
>いつも振り分けられた新着メールを受信エディタで開き、スペース
>キーで次々と読んでます。
>で、最後のメールを読んで、受信エディタを閉じると、あ〜ら不思
>議、今読んでいたメールではなく、かなり前のメールが選択されて
>ます。
忘れてましたけど、β版のころから下記のようなマクロを使ってま
す。これまでのバージョンではうまく動いてたんですけど…。
-----------------------------
loaddll "TKInfo.dll";
#count = dllfunc("RecvMailCount");
if ( #count == 0 )
goto CloseMacro;
if ( #count == 1 )
$howmany = "a mail.";
else
$howmany = str(#count) + " mails.";
call DispMsg;
$account = dllfuncstr("CurrentAccount");
#n = dllfunc("SelectFolder", $account, "受信");
if ( #n == 0 )
{
$ErrMsg = "受信メールのアカウントへの移動に失敗";
call DispErr;
}
#n = dllfunc("SelectRecvMail");
if ( #n == 0 )
{
$ErrMsg = "どうやらメールはゴミ箱に直行したらしい";
call DispErr;
}
goto CloseMacro;
DispMsg:
message "You have " + $howmany;
return;
DispErr:
message $ErrMsg;
return;
CloseMacro:
endmacro;
-----------------------------
---
Miguel Thomas Lopez-Cai
TuruKame Ver.1.18, Hidemaru Ver.3.08
|
|