Jump to content

Fletch

Registered Users - Approved
  • Posts

    106
  • Joined

About Fletch

  • Birthday May 8

Converted

  • Location
    Cincinnati Ohio

Converted

  • Occupation
    Prepress Manager

Converted

  • FusionPro Products
    Yes

Converted

  • FusionPro VDP software version
    13.04

Converted

  • OS
    Windows 10 Professional

Converted

  • Acrobat Version
    Acrobat DC

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Fletch's Achievements

Collaborator

Collaborator (7/14)

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

Recent Badges

10

Reputation

  1. I have 54 folders that contain images I need for a variable job. I cannot combine all the images into one folder, because my customer has used the same filename in different folders, and those images are actually different. Is it possible to have the software select the image by first finding the correct sub folder (which is a column in the database) and then matching the filename (which is a different column in the database)?
  2. Thank you, Dan. I actually found one of your posts late yesterday, with the same solution. But, it just isn't working. I'm very familiar with UNC paths so the solution made perfect sense. I've even placed the path in the Producer Configuration. No luck. I've checked all permissions for Sharing on my PC and the PC that Producer is running on and it all checks out. I don't get any errors, I just get blank pages where those images are supposed to be. I'll keep Hammering away at it.
  3. I have a question related to this job. When I choose to use the Fusionpro Producer, the images on pages 2-4 do not show up. Are they not being sent over with the job because they are not Resources? If so, how do I get producer to include them?
  4. Thank you both very much. Working perfectly now.
  5. I accidentally asked this question in the Producer area, I apologize. I have a variable job that has the 1st page that has a letter with some variable fields. Starting with the second page I need to place a 3-page PDF, which will become pages 2-4, for a total of a 4-page document. The filenames are in a field in the data file. I have created a resource for the 3-page PDF files. Then I created a rule for each of the pages. I've attached all the files for what I did. It's a test sample, instead of loading all 300 records. Still, when I validate the rule I get an error that my resource doesn't exist, when it clearly does. I tried another method I found on the forum and it was crazy confusing. Please Help! Test.zip
  6. I found my mistake. I had duped the original Rule you sent, to create the second Rule, but forgot to swap the Rules in the Text Frame. It works perfectly. Again, many thanks.
  7. Dan, thanks a million. I truly am grateful. For some reason, the 'ext.' is still Bold. I've examined the code to see if I could possibly figure it out and it's not really jumping out at me. So sorry. Can you adjust the code for the 'ext.' to not be bold?
  8. That codes works perfectly! I do need one adjustment. I need the 'ext.' to be not bold.
  9. That worked like a charm. I tweaked it a bit for the proper colors and to add a space between the numbers. I also duped a section to add a extension to the Office number. I need the 'ext' to be black as well as the actual extension number, and a '.' after the ext instead of a ':' colon. Can that be done? (Code below) function format_phone(prefix, phone_num) { if (phone_num) return '<span color="PANTONE BLUE 072 U">' + prefix + ": " + '</span><span color="Black">' + phone_num + '</span>'; else return false; } var numbers = [format_phone("<b> Office</b>", Field("Office")), format_phone("<b> ext</b>", Field("Ext")), format_phone("<b> Direct</b>", Field("Direct")), format_phone("<b> Cell</b>", Field("Cell"))]; return numbers.filter(Boolean).join(" ");
  10. It will not let me attach the xlsx or csv file.
  11. I picked this rule in a post from 2013. What am I missing? The Labels (Office, Direct, Cell) still appear when the cell is empty. I should also add that I need to labels for each a particular font and color, and the actual phone numbers a separate font and color. I'll upload my csv file and a jpg image to show. var numbers = ["Office: " + Field("Office"),"Direct: " + Field("Direct"),"Cell: " + Field("cell")]; return numbers.filter(function(s){return s.length>4;}).join(" ");
  12. I need help, shading every other row of text in a text box. (kind of like a spreadsheet) Text will still be black, with a light shade behind every other row.
  13. I have a paragraph that contains a variable (first name) at the beginning. Because the name changes in number of characters, I have re-set the paragraph text in a FusionPro text box. The static text in in spanish. How can I get FusionPro to accent the 'O's and 'N's like the spanish text?
  14. I knew it was something I was doing wrong. Sorry about that. It worked this time. Thanks a million.
  15. The first solution literally just prints the text,$impositionsheetnumber. (I did omit the quotes) The second solution gives me an error that the Function does not return a value. Any ideas what I'm doing wrong?
×
×
  • Create New...