Jump to content

jefff

Registered Users - Approved
  • Posts

    6
  • Joined

About jefff

  • Birthday 11/07/1968

Converted

  • Location
    St. Louis, MO

Converted

  • Occupation
    Graphic Designer

Converted

  • FusionPro Products
    Yes

jefff's Achievements

Rookie

Rookie (2/14)

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

Recent Badges

10

Reputation

  1. Collected Template attached. I really don't know how to be any more clear on what I'm trying to achieve. The script works like it should. It removes the phone number when none is present in the data, removes the cell when none is present in the data, and if both numbers are in the data they are there in the preview. The only thing I can not get to work is the tag for the color. The "p" and "c" are green. The actual phone/cell numbers are 80% black. PremiumRetail_v3.zip
  2. OK, followed your advice and applied the color tag to the script. See Below. if (Field("Phone") == "") return '<color rgb="00B189">c </color>'+Rule("Cell Dot Rule"); if (Field("Cell") == "") return '<color rgb="00B189">p </color>'+Rule("Phone Dot Rule"); else return '<color rgb="00B189">p </color>'+Rule("Phone Dot Rule")+ ' '+'<color rgb="00B189">c </color>'+Rule("Cell Dot Rule") According to the Fusion Pro manual the color tag I placed should do exactly what I need but it's still not working. The rules "Phone Dot Rule" and "Cell Dot Rule" are only formatting the number to ensure periods are used instead of hyphens on the phone/cell numbers.
  3. It turns out the "suppress if containing empty variables" was checked. So, now my challenge is the "p" and "c" need to be a customer specified green color and the phone/cell numbers need to be dark gray. What code do I need to add to get the two different colors from the script?
  4. No warning or error messages and the script works fine when both phone and cell number are present in data. The blank text box occurs when there is only one phone number or one cell number. Then the text box on the preview is empty. Like I said, it worked fine on the first template when I had the phone and cell number stacked like this: p 217.346.5467 c 217.257.4222 It's when I took out the return and made the numbers side-by-side like this that the issue occurs: p 217.346.5467 c 217.257.4222 If there is no phone the cell number should slide over flush left but instead....everything disappears and the text box is empty.
  5. I have a business card that has a minor alteration to it, I basically copied the template along with the accompanying scripts to create the new one. The only difference between the two templates is instead of having stacked phone/cell numbers they want them to be side-by-side and slide over when either number is missing in the data. Here is the script: if (Field("Phone") == "") return 'c '+Rule("Cell Dot Rule"); if (Field("Cell") == "") return 'p '+Rule("Phone Dot Rule"); else return 'p '+Rule("Phone Dot Rule")+ ' '+'c '+Rule("Cell Dot Rule") Worked for the first template (stacked) but when the data is missing on the phone or cell number all I get is a blank text box on the new template. Is this a scripting issue or Fusion Pro issue?
  6. I have a request from a customer to make their Subject line stand out in the email when they receive low stock notifications. What they would like is the subject line to be bold and colorized if possible. I have looked all over the Marcom documentation and found nothing so I have to ask, is this even possible? Thanks.
×
×
  • Create New...