I want to know how to print multiple PDF files in a single print click.
I can easily print single PDF file but I dont know how to print when there are more files.
Thanks in advance.
Files selected with Ctrl. This is the easiest way to mark a few files for printing. To use this hotkey, simply click on the first file you want to select, then press the Ctrl key. While holding this key, click on all the other files you want to print.
Get the Files into the Portfolio It's OK if the documents are in sub-folders. The Combine Files window opens. B) Click the Add button and choose Add Folders, then browse to the folder of files you wish to print. In the Options window, check “Convert all Files to PDF when creating a portfolio”, then click OK.
Convert multiple files into a single PDF.Open your favorite web browser and navigate to Acrobat. Select Combine Files. Drag and drop your files into the conversion frame. You can also locate your files manually.
You can call print()
multiple times in your code, resulting in the files being printed one after the other:
function PrintAll() {
var pages = ["page1.pdf", "page2.pdf", "page3.pdf"];
for (var i = 0; i < pages.length; i++) {
var oWindow = window.open(pages[i], "print");
oWindow.print();
oWindow.close();
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With