Looking for a plugin that will merge a bunch of pdffiles into one big file that I will print out.
I mark some pdffiles then hit a button and I get one big file in the same dir as the others.
any suggestions?
Pdffile merge
Moderators: Hacker, petermad, Stefan2, white
Get PDFTK from here.
Put it on a button with these parameters:
Done
Put it on a button with these parameters:
Code: Select all
%S cat output onebigfile.pdf
Re: Pdffile merge
Hi,
Is there a way for this to automatically merge from my TC highlighted pane?
So I've used xpdf search to search all pdf doc's containing a supplier Purchase Order number e.g. 3702, I wish to select multiple results in TC left pane and then press my button PDFTK button (or other pdf merge program) & merge said files?
I don't think you can drag & drop PDFTK so I have to manually Click PDFTK button Ive added, then Add PDF and browse the file path of each indiv result...surely there a better way of browsing and reselecting file paths my xpd search has found? Is there a way to select only certain results of xpdf search before Fedd to list box so there not all sent to my pane.
Brand new user from yesterday, so bear with me please
.
Is there a way for this to automatically merge from my TC highlighted pane?
So I've used xpdf search to search all pdf doc's containing a supplier Purchase Order number e.g. 3702, I wish to select multiple results in TC left pane and then press my button PDFTK button (or other pdf merge program) & merge said files?
I don't think you can drag & drop PDFTK so I have to manually Click PDFTK button Ive added, then Add PDF and browse the file path of each indiv result...surely there a better way of browsing and reselecting file paths my xpd search has found? Is there a way to select only certain results of xpdf search before Fedd to list box so there not all sent to my pane.
Brand new user from yesterday, so bear with me please
Re: Pdffile merge
Hi and welcome 2gazmoz17
See the post above of yours for an possible way.
To learn more:
- right click an button in the buttonbar
- choose "Change..."
- click [Help]
> %S insert the names of all selected files into the command line.
> %L, %F, .... create a list file in the TEMP directory with the names of the selected files (you can use any scripting language to loop over that file)
Later more...
See the post above of yours for an possible way.
To learn more:
- right click an button in the buttonbar
- choose "Change..."
- click [Help]
> %S insert the names of all selected files into the command line.
> %L, %F, .... create a list file in the TEMP directory with the names of the selected files (you can use any scripting language to loop over that file)
Later more...
Re: Pdffile merge
2 gazmoz17
If you have PDFtk installed in default location - "C:\Program Files (x86)\PDFtk\bin" add this button to your buttonbar (copy this code and paste on empty space on buttonbar)
This use "pdftk.exe" - command line program, NOT GUI, and environment variables for path.
Take it as a example, starting point.
If you have PDFtk installed in default location - "C:\Program Files (x86)\PDFtk\bin" add this button to your buttonbar (copy this code and paste on empty space on buttonbar)
This use "pdftk.exe" - command line program, NOT GUI, and environment variables for path.
Take it as a example, starting point.
Code: Select all
TOTALCMD#BAR#DATA
"%ProgramFiles(x86)%\PDFtk\bin\pdftk.exe"
%S cat output %T%o.(merged).pdf
%ProgramFiles(x86)%\PDFtk\bin\PdftkXp.exe
PDFtk
-1