Jump to content

Skidoo42

Registered Users - Approved
  • Posts

    2
  • Joined

Converted

  • FusionPro Products
    No

Skidoo42's Achievements

Newbie

Newbie (1/14)

  • First Post Rare
  • Week One Done
  • One Month Later
  • One Year In
  • Conversation Starter Rare

Recent Badges

10

Reputation

  1. Perfect! works great! Thanks much Thomas. Happy New Year.
  2. I have a series of 31,000 pdfs each day. The pdfs are all image, image, image. I need to add a blank page to the back of the first image, so that the output pdf is image, blank, image, image. Thus changing a 3 page pdf into a 4 page. The first page of the provided image is a letter, the 2nd and 3rd page are invoice format sheets. The client wants the first page to be simplex, and the 2nd and 3rd provided images to be duplexed on the same sheet. They know that we will need to charge them for duplex of both sheets. my template is setup as an overflow from the first page to the 2nd page, but when I add a blank page in between them, FP puts that blank page in the 4th page position on my output. Here is my template and the code: var pathName = "C:\\Users\\tfischer\\Desktop\\Troy and Dan\\e470 test\\"; var FullResourcePath = pathName + Field("PDF File Name"); //change to match your data file field var x = new FusionProResource(FullResourcePath, "graphic", 1); if (!x.exists) ReportError("Graphic not found: " + FullResourcePath); var pdfString = ''; for (var pgnbr = 1; pgnbr <= x.countPages; pgnbr++) { x.pagenumber = pgnbr; pdfString += x.value + '<p>\n'; } Print("Result is: " + pdfString); return pdfString;yellow presort 2.pdf
×
×
  • Create New...