|
ひぐちさん こんにちは 樋口です。(爆)
つまり自己レス
>>・テンプレート、署名を複数設定できるとありがたい。
>
>アカウントごとフォルダごとには設定できますよね?
>あとはマクロでやるしかないかな?
>メニューを出して署名を選ぶマクロが出来そう。
次のようなのどうでしょう?
(ここから)----------------------------
begin:
mousemenu "Select footer - [Esc] to break off",
"&1) Standard",
"&2) for friends",
"&3) for xxxx-ML",
"&4) for business";
if (!result)
goto oshimai;
else if (result == 1)
goto begin;
else if (result == 2) {
gofileend;
call Footer1;
goto oshimai;
}
else if (result == 3) {
gofileend;
call Footer2;
goto oshimai;
}
else if (result == 4) {
gofileend;
call Footer3;
goto oshimai;
}
else if (result == 5) {
gofileend;
call Footer4;
}
oshimai:
endmacro;
//////////////////////////////////
Footer1:
insert
"---\n" +
"あたし\n" +
"--------------\n" +
"http://www.xxxxx.ne.jp/xxxxxx/\n";
return;
Footer2:
insert
"---\n" +
"あたい\n" +
"--------------\n" +
"mobile phone: 090-xxxx-xxxx\n" +
"--\n" +
"http://www.xxxxx.ne.jp/xxxxxx/\n";
return;
Footer3:
insert
"---\n" +
"vox audita perit, littera scripta manet.\n" +
"-------\n" +
"Atashi, the captain of \"The pirates\"\n" +
"--------------------------------------\n";
return;
Footer4:
insert
"----\n" +
"〒xxx-xxxx 東京都××市○○町 nn-nn\n" +
"××事務所 わたくし: FAX: xxxx-xx-xxxx\n" +
"----------------------------------------------\n";
return;
----------------------------(ここまで)
の_の☆彡 ☆☆☆☆☆☆☆☆☆☆☆
樋口 由佳 <xxxxxxxx@hi-ho.ne.jp>
http://www.hi-ho.ne.jp/kellopie/
wrote at 10:56 12/04/2000
|
|