Jump to content

dbarbee

Registered Users - Approved
  • Posts

    19
  • Joined

About dbarbee

  • Birthday 09/30/1975

Converted

  • Location
    Minnesota

Converted

  • FusionPro Products
    Yes

Converted

  • FusionPro VDP software version
    10.1.9

Converted

  • OS
    Windos 10

Converted

  • Acrobat Version
    Acrobat DC

dbarbee's Achievements

Apprentice

Apprentice (3/14)

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

Recent Badges

10

Reputation

  1. I was unable to recreate the issue I was experiencing before. The workaround is a solid solution. Thank You.
  2. Thanks Dan, I tried the workaround, and it didn't resolve the issue. Any other suggestions? Or should I downgrade to a previous version?
  3. Your file imposed correctly. Attached is a collected FusionPro document that imposes incorrectly when I compose it. Stack Test.zip
  4. Hi Alex, That worked. I thought I had already run that test, but I must have forgot to UNCHECK Infinite Stack. Hope this helps.
  5. Thank you for your quick response. I created a new .fpi file from scratch to make sure it wasn't a corrupt file. I also used imposition files that were created with the previous version of Imposer. I am unable to get it to work any way I try. I have also attempted a two step (Stack then Horizontal) and a three step (Stack then Horizontal then Vertical) imposition to no avail. I also attempted declaring a stack size, which did not fix the issue. We did have an earlier version of fusionpro installed on another computer, which composed the project without issue.
  6. We are also experiencing this issue where it is not honoring the "Infinite Stack" as the Primary Imposition Step. I am running Acrobat Pro Version 2023.006.20380 on Mac OS 12.7.2. We were previously using the latest version of FusionPro without issue, which I think was 13.0.4. Is there any progress on a resolution? Are you able to duplicate the error, or do you need assistance?
  7. Is there a way to reference variables created with FusionPro.Composition.AddVariable in other rules? In particular, I need to return a Graphic of the presenter.
  8. One question: Is it possible to create resources or variables like this in OnJobStart? Thinking about the efficiency/speed in composition.
  9. This is brilliant, and I learned several new things. Thank you for this. The deviations in the phone number are mostly minor. The three formats I've seen are below, but it's mostly presented exactly like the sample: (555)555-5555 (555) 555-5555 555-555-5555
  10. Attached is a version of the document in regards to.Sample Letter.zip
  11. I'm setting up a variable letter that we merge frequently. I'm provided a Microsoft Word document that is completely static. I plan on copy and pasting this into a FusionPro text box, which preserves the formatting. There are elements within this Microsoft Word Document that I would like to use in other parts of the variable letter. I am attempting to create these variables as JavaScript Global Variables. Attached is my code (In JavaScript Globals) so far: var frame = FindTextFrame('Letter'); var letter = frame.content.split('</para>'); var lines = []; //Strips out tagged text formatting in letter, and places it in 'lines' variableName for (var i=0; i<letter.length; i++){ if (letter[i] != '') lines.push(Trim(RawTextFromTagged(letter[i]))); } lines = lines.filter(String); // tidy's up array //Assumes Date is in 3rd line of letter. Would like make more robust. i.e. find line that matches "Wednesday, April 1, 2020"; var EventDate = lines[2]; //Looks for the Company Name, and returns the two lines following. for (var i=0; i<lines.length; i++){ if (lines[i] == 'Company Name'){ var EventAddress = lines[i+1]; var EventCity = lines[i+2]; break; } } //Looks for "Guest" and returns everything after the colon; for (var i=0; i<lines.length; i++){ if (lines[i].search('Guest') == 0){ var PresenterLine = lines[i].split(':'); var GuestSpeaker = PresenterLine[1]; break; } } //Looks for a phone number... not working. Needs to match "(###)###-####." because it's usually at end of sentence. for (var i=0; i<lines.length; i++){ var words = lines[i].replace(') ',')').split(' '); //Removes space after parentheses so phone number ends up as one word. for (var j=0; j<words.length; j++){ if (words[j].match(/\(?[\d]{3}\)?[\d]{3}?[\d]{4}$\./)){ var CompanyPhone = words[j]; break; } } } The biggest issue is I'm having trouble matching the phone number. Most of the time, the phone number is in the format "(###)###-####" but can deviate slightly. It's always at the end of the sentence, so it will end up with a period at the end. I'm also wondering if there is a better way of extracting the date from this letter. It will always be on its own line in the format: "Wednesday, April 1, 2020"
  12. I've created a variable (Bar) chart in FusionPro. The X Axis label is a currency. It currently displays as a number, but I would like to add a dollar symbol as a prefix, as well as thousand commas. Is this possible?
  13. Thanks Dan, This has been invaluable. I did find a previous post of yours on tables: Is there any way of manually adjusting the cell/table height? I have multiple lines of text, and need a rule below the top most line. I have already adjusted the margins to 0. I am currently not putting the content within the table, which I only require for the underline. In other words, the rest of the text should not wrap around the table.
  14. Thanks Dan, I'm getting an error on the above code which reads, "line 26: TypeError: row has no properties. Any idea why?
  15. Thanks Dan! I did not know of FusionPro's ability to create tables! I see examples in the documentation using static, "Formatted Text" Resources. What's the easiest way to create tables with variables? Do you have a sample document available somewhere?
×
×
  • Create New...