Hello,
I am retrieving a PDF with variable numbers of pages onto a virtual page (page does not eject). A few of the PDFs have a 0.25" margin. I need to move those pages another 0.25" to the left. When I move the PDF over 0.25" the virtual page of the PDF it does move to the left 0.25" for the first page, however the rest of the pages go back to the 0.0" on the output and thus go back to the 0.25" margin.
I want to have all the pages in the PDF move over 0.25". I could write a VB Script to do this in the workflow but I would rather accomplish this with the Press Talk that is pulling in the PDFs in the first place. Below is the PTalk syntax that I am currently running.
*********************************************************************
define(&i,integer,1)
define(&PDFName,string,GetMeta('DataFile[0]', 1, 'Job.Group.Document'))
For(&i,1,1,pdfpagecount(&PDFName))
showpdf(&PDFName,&i,0,0)
if(&i<pdfpagecount(&PDFName))
showpage()
endif()
endfor()
********************************************************************
Your assistance is greatly appreciated.
Thank you,
Dan Stauder