#10719
Yutaka Emura
Keymaster

Hello,

This macro should print all open documents directly to the default printer.

[JavaScript]

docs = new Enumerator( editor.Documents );
for( ; !docs.atEnd(); docs.moveNext() ){
doc = docs.item();
doc.Activate();
editor.ExecuteCommandByID(4115);
}

Thank you!