tou Posted December 7, 2016 Share Posted December 7, 2016 (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 December 7, 2016 by tou Quote Link to comment Share on other sites More sharing options...
step Posted December 7, 2016 Share Posted December 7, 2016 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); Quote Link to comment Share on other sites More sharing options...
tou Posted December 7, 2016 Author Share Posted December 7, 2016 Got it...thanks! Will give it a shot later... Quote Link to comment Share on other sites More sharing options...
Recommended Posts
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.