Jump to content

hkenney

Registered Users - Approved
  • Posts

    17
  • Joined

Converted

  • FusionPro Products
    No

hkenney'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. AH I feel silly. I forgot to replace the variable field with the rule. Thanks!
  2. I have been trying to make the register symbol from my data file superscript. I realized after a while that the font I was using was the problem so I tried using ReplaceSubstring to change the font of only the symbol but it still does not seem to be working. I found someone with a similar issue and tried modifying the code that worked for them, my modified version is below. FieldContent = Field("Title") return ReplaceSubstring(TaggedTextFromRaw(FieldContent), "®", "<f name=\"Adobe Garamond Pro\"><superscript>®</superscript></f>");
  3. IT WORKED!! Sorry I've been trying so many variations I must have lost the name property somewhere along the way. Thank you so much!!
  4. Yes, I am using the rule not the email field in the text box. I tried collecting and uploading and that didn't work. Also, I tried using span tags and it is still not working. I am attaching my collect files. Thanks so much guys!Collect2.zip
  5. Thanks for looking into this David! Yes I am inserting the rule into the text field. I have been trying and trying and nothing is working. Could it be because the red color in the rest of the string is a spot color? I can't see why that would matter but I'm trying to think of anything! Thanks, Hilary
  6. I'm having trouble writing a rule to change the color of the "@" symbol to black while keeping the rest of the email address red. When I validate the rule it returns my field correctly but it is not changing the color when I preview it. I have checked and I labeled the color exactly how it is spelt in my loaded colors and I have "treat returned strings as tagged text" selected. What am I missing? Thanks! return Field("Email").replace(/@/g, '<color name="Black">@</color>');
  7. Hello, I am working on a project where the user is allowed to choose if they would like their display card to be single or double sided. I did not want users to have to separately upload a front and back image so I created a rule to allow users to upload a single two-page PDF and it is working properly. Now I am trying to figure out how to suppress the second page and impose it properly if they only upload a single paged PDF. Thanks for you help!
  8. I have never used a rule like this before and I am lost. I have a job thats needs to number 2" x 2" construction jobsite stickers starting with "001" and ending with whatever number the user fills in, the end number won't exceed 999. So in the end I will need an imposed multipage(depending on how many stickers the user needs) PDF with a different number on each sticker. Let me know if I need to provide more details! Thanks!
  9. if (!Copyfit(new MagnifyAttributes("text", 8, 70, 8, 70))) { FusionPro.Composition.CurrentFlow.content = '<span font="Gotham Condensed Medium">' + FusionPro.Composition.CurrentFlow.content + '</span>'; ReportWarning("Could not copyfit text in flow " + FusionPro.Composition.CurrentFlow.name); } I used this rule to change the font of a single variable field on the back of a business card(and it worked like a charm) but now I want to apply it to a single line(the email field) on the front. This field is included in a frame with four other lines that I don't wish to adjust. When I try to write a CopyFitLine rule I receive an error message that <Arial> is not loaded but I am not using arial anywhere in this job.
  10. Is it possible to link approval requirements to individual items versus the entire order? For example, if several items are ordered at the same time and only one requires approval, does the entire order have to be reviewed by the manager (approver)? Thanks, Hilary
  11. Cool thanks Dan that seems like a great option too! Hilary
  12. Sorry I have not responded I have been out of the office. Still trying to find a solution for this though... I have attached a screen shot this time. I put each variable field in it's own text box, as you suggested, but still can not figure out how to expand the name and phone number fields to fill the entire red space if the email(the bottom text box) is empty. Thanks for all you help! Hilary Screen Shot 2015-07-01 at 11.27.50 AM.pdf
  13. I was surprised as well. Thanks so much, worked like a charm! Hilary
  14. I'm trying to figure out how to write a phone formatting rule that will allow for this format: 336 876 9876 I was trying this out below but had some issues if an extension was present or if there was no area code. I'm completely in the dark when it comes to coding! HALP:) var str = Field("Phone");//Phone var newStr = str.replace(/\s+/g, ''); return Left(newStr,3) + " " + Left(Right(newStr,6),3) + " " + Right(newStr,4); Thanks in advanced! Hilary
  15. Yes I actually got the font issue fixed. I closed down fusion pro and acrobat and that fixed it. Silly user error Thanks!!
×
×
  • Create New...