Jump to content

Christian Johnson

Registered Users - Approved
  • Posts

    16
  • Joined

Posts posted by Christian Johnson

  1. Hello,

    I'm trying to output each record to its corresponding page quantity. I have a template that has 56 total pages because the record with the highest page quantity is 28 (Including front and back = 56). Meaning, if another record only has a page count of 1. I'll have 54 blank pages. Is there a rule I can make that only produces each record based on page count? There is a field in my data called "Page Qty" if needed.

    I've attached my collect FusionPro template for reference.

    J024928_ERB.zip

  2. Adobe Acrobat automatically updated recently and I've noticed when I turn preview on and try to scroll through my records the "ProdActivate" icon pops up and quickly disappears. This is causing the preview function to be slower than normal.

     

    Has anyone else experienced this issue?

  3. I've been having this issue as of late. My font loads fine but, when preview is turned on, it doesn't display correctly. However, when I output a PDF, it looks fine.

     

    Is there a setting that needs to be changed for the font to preview correctly or is this on fact a bug?

     

    Thank you!

     

    I've attached screenshots for reference.

    Untitled-21.pdf

  4. I'm trying to create a rule that allows a customer to upload a 2 page PDF and have the second page of the uploaded PDF flow to the second page of my template. I've been in constant contact with support on this and seem to hit a wall.

     

    My Rule:

     

    var pathName = "..\\RESOURCES\\";

    var FullResourcePath = pathName + "<graphic file=" + Field("Cover") + ".pdf">;

    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;

     

    Please note on this rule I do get a syntax error

     

    Any help on this is greatly appreciated.

  5. I need help creating a rule based on two fields.

     

    In my data it is possible to have the Full Name field and Company field share the same data.

     

    I need a rule that states "if Full Name field is same as Company field then return nothing, else return Company".

     

    Can anyone help me?

×
×
  • Create New...