Jump to content

NAFPRm

Registered Users - Approved
  • Posts

    7
  • Joined

Converted

  • Location
    Orange County, CA

Converted

  • Occupation
    Print Master

Converted

  • FusionPro Products
    Yes

Converted

  • FusionPro VDP software version
    9.3.9

Converted

  • OS
    Windows 7 Professional

Converted

  • Acrobat Version
    Acrobat X (10)

NAFPRm's Achievements

Rookie

Rookie (2/14)

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

Recent Badges

10

Reputation

  1. Sorry about the wrong field names. It's not that way on my end. Maybe I uploaded the wrong file somehow. I tried to upload the source file, but it said "invalid file". I tried the code you provided though and it appears to have worked. Thank you!
  2. haha, it is. Yea, there are pages in the booklet where the same field - headshot for instance - will appear multiple times, however it isn't consistent. Some pages have several, some have no VDP fields at all. I'm not committed to any solution. Whatever works, really. I tried the one you most recently provided and it didn't work. Same issue: solved the first appearance of the text/logo issue, but didn't work on any others.
  3. I think the first solution would work, but I get an error that says: In FindFrame(), no frame named "REA..TXT..CompanyName_1" I'm guessing this has to do with how I named the fields on each page. Because the same field can appear on a page I had to add identifiers to, so the naming system looks like this "REA..TXT..CompanyName..P01a" where "P01" represents "page 1" and "a" distinguishes it from others on the same page (for example the next one would be "REA..TXT..CompanyName..P01b", etc.) using this system, is there a way to use your first code and make it work?
  4. I have a 12-page project (a booklet) where many of the VDP fields we use are repeated on multiple pages. We have the OnRecordStart code below in place. The second part is a code that basically says "show the company name as text unless a logo is available in which case hide the text and show the logo". It works perfectly for the first such appearance of this code, but in all other appearances it doesn't work and displays the logo and text simultaneously. How can I make it apply to the whole project? var Name = Field("REA_FirstName") var Headshot = Field("REA_Headshot") var Logo = Field("REA_Logo") if(Name =="" || Headshot =="") { FindTextFrame("REA..TXT..Data").suppress=true; FindTextFrame("REA..TXT..Message").suppress=true; FindGraphicFrame("REA..IMG..Headshot").suppress=true; FindGraphicFrame("REA..IMG..CompanyLogo").suppress=true; FindTextFrame("REA..TXT..CompanyName").suppress=true; } if(Logo !="") { FindTextFrame("REA..TXT..CompanyName").suppress=true; }
  5. I'm a code novice, so bear with me. I have a text frame with several lines of data being pulled from a CSV. EXAMPLE: Line 1 Line 2 Line 3 Line 3 can get to be exceptionally longer than the others and exceed the width of the TextFrame. I want this line to automatically change size to fit within the width of the TextFrame without affecting the size of the other lines of data. I've messed around with various Copyfit and CopyfitLine configurations, but nothing has worked. Any advice/suggestions appreciated.
×
×
  • Create New...