Jump to content

Search the Community

Showing results for tags 'multi-page pdf'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome
    • Start Here!
    • News
  • Software-Related Talk
    • Documentation
    • Getting Started
    • The JavaScript Library
    • FusionPro® VDP Creator
    • FusionPro® VDP Producer
    • FusionPro® VDP Server (API)
    • FusionPro® Expression®
    • MarcomCentral®
  • Support
    • Issues, Questions, Etc.
    • Digital Workflow Documents
    • Fonts
  • Off Topic
    • Customer Polls
    • Job Board (Moderated)
    • Reviews, Rants, and General Musings

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me


Location


Occupation


FusionPro VDP software version


OS


Acrobat Version


Homepage


ICQ


AIM


Yahoo


MSN


Skype


User Title

Found 2 results

  1. Hi all. I hope someone will be able to lead me in the right direction. I have a job that requires pulling multiple PDF files into one single final PDF file for print. Each of the possible PDF files to be pulled are different page counts for each, and all have variable text boxes to populate with one weekly data file supplied for each job - qty of records not known currently. (Multiple records, with multiple page count final PDF possibilities.) I have setup the Insert files (separately) to pull - and all variable text boxes have been linked to the master data file's fields that will be provided to us. How do I go about programming a master template to pull the necessary individual PDF files (in a certain order) and to populate the variable fields on each insert based on the data file dropped into the master template (with overflow pages)? I'll also need to add blank pages, at the end, to force the final print file to be divisible by 4. Note: There is not one single field, within the data file, that calls up the filename for the inserts. It's based from other fields, but there is no common naming convention for these. (I'm thinking a switch type rule would need to handle this - but I could be wrong.) Thanks so much in advance for the assistance. Danielle
  2. Hello, I'm trying to set up a new German envelope and running into difficulty getting the multi-page resource to work correctly. Background info: Deutsche Post (German Post) is requiring that we use the Premium Address barcode on all of the envelopes we send with our direct mail. We have to use their software to produce that barcode, which is unique for every customer. Once we load our data into the DP software and run the file, it produces all of the addresses from our data with their corresponding barcodes on a single PDF file with each record on one page. I downloaded the sample file from this thread on inserting a Multi-page pdf as variable graphic: http://forums.pti.com/showthread.php?t=37 I then made some adjustments to match with my data and got the following rule, which isn't working: FieldName = 'IMP6'; PDFfileName = 'DialogLabels.pdf'; pagesInPDF = 66726; markupToReturn = Resource('DialogLabels.pdf'); pathToAllPDFs = 'C:\Users\Stacy.Zech\Desktop\PUSH\=Projects\PremAdd_Labels\TestEnvelope(DE-F001)\Links'; pathToPDF = 'C:\Users\Stacy.Zech\Desktop\PUSH\=Projects\PremAdd_Labels\TestEnvelope(DE-F001)\Links'; PDFresourceRef = 'DialogLabels.pdf'; Print(pathToAllPDFs); FieldsToInspect = 61; for (fieldCounter = 1; fieldCounter <= FieldsToInspect; fieldCounter++) { FieldName = 'SEQNO'; PDFfileName = Field('IMP6'); pathToPDF = pathToAllPDFs + PDFfileName; PDFresourceRef = CreateResource(pathToPDF ,'DialogLabels.pdf' ,'no'); pagesInPDF = PDFresourceRef.countPages; for (pageLoop = 1; pageLoop <= pagesInPDF; pageLoop++) { markupToReturn += '<graphic file="' + PDFresourceRef.name + '" pagenumber = "' + pageLoop + '" position="afterline"/>'; markupToReturn += '<P>'; } } return markupToReturn; What I am getting when I compose is the first page from the resource PDF showing on the 2nd page, which should be an overflow page. Any help on this would be greatly appreciated. Thank you
×
×
  • Create New...