|
他の作戦として、複数選択されたメールの「index.htm」ファイルを全部まとめて
ブラウザで開くことだけマクロで実現した上で、ブラウザの方で、複数タブまとめて
印刷できれば目的は達成できると思います。
「chrome 複数タブ 印刷」
「edge 複数タブ 印刷」
「firefox 複数タブ 印刷」
のようなキーワードでネット検索すると、同様の質問をしてる例がありつつも解決
策がなかなか見つからずでしたが、1つ、firefoxだけアドオンがあるみたいな話です。
http://zubolla.blog.fc2.com/blog-entry-409.html
全部開くマクロの例は以下のようになります。もし良かったらこの作戦試してみて
ほしいです。
----------------------------------------------------------------------------
-----------
loaddll "tkinfo.dll";
#count = dllfunc("SelectedMailCount");
if( #count == 0 ) {
endmacro;
}
question "現在選択してるメールのHTMLメールすべてをWebブラウザで開きます。";
if( result != yes ) {
endmacro;
}
$dir = dllfuncstr("HomeDir") + dllfuncstr("CurrentAccount") + "\\";
#n = dllfunc("LockSelection");
while(1) {
#n = dllfunc("EnumSelection", 1);
if( #n == 0 ) {
break;
}
$html = dllfuncstr("CurrentHeader", "X-Html");
if( $html != "" ) {
$path = $dir + $html;
openbyshell $path;
}
}
#n = dllfunc("UnlockSelection", 1);
----------------------------------------------------------------------------
-----------
|
|