Jump to content

Recommended Posts

Posted (edited)

How do I nUp a static 664 page pdf?

 

I generated a PDF from our mailing software and just want to use FP to 9-up it onto 12x18 sheet.

 

I tried it and it gave me 664 pages completed at 12x18 with my 6x4 labe in the upper left hand corner.....I should get 74 pages.....(664/9~74 pages)....

 

Sorry if I missed it in other posts...

Edited by tou
Posted

That's because you're creating 664 pages for every record. To get the layout you're describing, you'd need 664 records each producing 1 page. Assuming your template is just the 664 page PDF, you'll need to repeat the record 664 times and enable the page that corresponds with the repeat number.

 

OnRecordStart

var pages = 664;
FusionPro.Composition.repeatRecordCount = pages;
for (var i=1; i <= pages; i++)
 FusionPro.Composition.SetBodyPageUsage(i, i == FusionPro.Composition.repeatRecordNumber);

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...