Jump to content

Kal

Registered Users - Approved
  • Posts

    56
  • Joined

Converted

  • Location
    Canada

Converted

  • FusionPro Products
    Yes

Converted

  • FusionPro VDP software version
    13.0.2

Converted

  • OS
    Mac OS Monterey

Converted

  • Acrobat Version
    Acrobat DC

Kal's Achievements

Enthusiast

Enthusiast (6/14)

  • First Post Rare
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

10

Reputation

  1. Just to be a little more clear. I want to reduce the margin space above and below the variable text in the table.
  2. I need to adjust the height to a minimum for the top and bottom and just can't get it. Here is the script and I attached a sample file. var myTable = new FPTable; myTable.AddColumns(37400, 12300); for (var i = 1; i <= 5; i++) { if (!Field("PD_S" + i)) continue; var row = myTable.AddRow(); var cell = row.Cells[0]; var Table =row.Cells[0].SetBorders("Very Thin", "Black", "Top", "Bottom", "Right", "Left"); var Table =row.Cells[1].SetBorders("Very Thin", "Black", "Top", "Bottom", "Right", "Left"); cell.Font="Arial"; cell.PointSize="8"; cell.TextColor="Black"; cell.Margins = new FPTableMargins; cell.Margins.Top = 0; cell.Margins.Bottom = 0; myTable.Rows[0].Cells[0].HAlign = "Top"; myTable.Rows[0].Cells[0].VAlign = "Bottom"; cell.Content = Field("PD_S" + i); cell = row.Cells[1]; cell.Content = Field("PD_PH_S" + i); } return myTable.MakeTags(); Table-Issue.zip
  3. "Treat field values as tagged text" was the issue. Thanks Dan.
  4. Not sure why this is happening. When ever in the data two words are joined together with the ampersand symbol, then it doesn't print the ampersand and the word after it when composing. Input data: John&Sample Output after composing: John Any ideas?
  5. I'm outputting to multiple files based on a Data field "AccountNo". Problem is I can have 2 or more people with the same accountNo that live in the same location. So is there a way to keep it unique and not overwrite itself. Maybe add a "_1 or _2 or _3" depending on how many times the same account number comes up. FusionPro.Composition.outputFileName = Field("AccountNo") + ".pdf";
  6. Thanks, that's what I was trying to get at. This helps.
  7. I understand that this Rule will turn regular spaces to "Hard spaces and will not break. return ReplaceSubstring(Field("Variable_FIELD1")," "," ") Now is there a way to turn that hard space to print in color. Reason is some of our client have custom fonts and their mapping of characters are messy, sometimes I get "question marks in boxes" being printed. Now if I can tell that "Hard space" to print in "White" then I can keep using the client custom fonts. So I just want to add on to this rule and after it converts to Hard Spaces I then want to change the color. Hope this is clear.
  8. Thanks Dan, I think we can work with the XML log file. As for why, it's for a few of our clients that for some reason want log files of all of their composed files. We've been doing them manually by renaming the .msg files. I was hoping to avoid the manual part because it really slows us down and mistakes are made doing this.
  9. When I have to compose 10 to 40 different files, the company wants to keep each file it creates for "logging". To review if needed for errors. I really just need the .msg file with all the record counts. Or is there a way to create a text file with the unique input name with the same info as the .msg file?
  10. Is there a way for the .cfg & .msg files to output with the name of the input data filename? Input Data file = datafile01.txt cfg file needs to output name datafile01.cfg msg file needs to output name datafile01.msg
  11. Hi, can anyone tell me why I'm getting this error. I'm trying to create a PDF417 barcode. Error: <f name="IDAutomationPDF417n3"><z newsize="9"><leading newsize="90">Problemwithspawnedhelperapp"/Library/ApplicationSupport/PTI/FusionPro/Java/FPIDAutomation2DHelper"(systemreturned65024):***Javaerror:FusionProJavaUtilsclassnotfound
  12. Is there a way to pull random static pages. I have a layout with 50 pages and pages named 1 to 50 in the "Page Usage" Everyone gets Page1 & 2 then it's random and everyone gets the last 2 pages 49 & 50. Static Pages 3 to 48 can be in any order like P3, 4, 5 or P4, 3, 47, 11, 5 I can have a data file created and populated with the pages that need to be pulled. Field called "VarPages" How do I do this in "OnRecordStart" Hope this is clear enough.
  13. Thanks Dan, this truly save me hours from how I was originally doing it.
×
×
  • Create New...