Jump to content

dreimer

Registered Users - Approved
  • Posts

    524
  • Joined

Everything posted by dreimer

  1. I think you need to use Dan's rule up further in the post. You are using a rule for a different question about Phone numbers, not the numbers in an address field. var numberFont = "Arial"; var text = NormalizeEntities(Field("Add1")); return text.replace(/(\d+\s*)/g, function(d){return '<f name="' + numberFont + '">' + d + '</f>';});
  2. Uncheck infinite stack if you want to chunk in 2500's.
  3. If I remember correctly, making the graphic frame larger than the page itself may fix this.
  4. Hmm, OK, very frustrating to have those palettes pop up every time I click on a frame. Was hoping there was a way to keep them hidden like it did in Acrobat XI.
  5. dreimer

    Load Fonts

    Where are these 1,076 fonts that keep getting put in the "/Library/Preferences/PTI/FusionPro" folder coming from??? It take my machine 5 minutes to load fonts all the time. I have no fonts activated in my UTC client. These seem to come from Fusion Pro itself. I delete them out then go and load fonts in Fusion Pro and there they are again in this folder?
  6. I know this is an old post but I keep getting the same issue. I just upgraded to High Sierra and Acrobat DC. I don't want the document overview or steps palette to reappear every time I click on a frame. It was mentioned needing admin rights to fix this but that was supposedly fixed in version 8. Please help!
  7. dreimer

    UPC Help

    Dan, I tried your code, it didn't return any barcodes. I have my field names "Barcode 1", Barcode 2", etc. in the data. My text frames are named the same as the data fields. Where in the rule does it assign which text frame to place the barcode?
  8. dreimer

    UPC Help

    Thanks Dan, that sounds like a much better way of doing things, I will try your code.
  9. dreimer

    UPC Help

    Thank you very much for that, exactly what I needed, didn't think it was too difficult but I'm not a code guy!! The warning I get is a can't copyfit text in text boxes that have nothing in the fields, not sure I can avoid that.
  10. dreimer

    UPC Help

    I have the following rule to create a UPC. The data usually comes in missing the leading zero. Now I have a mixture of barcodes where I don't need to add the leading zero for some records. zThe current code works great just need some code to add an if statement to add the zero if field is shorter than 11 characters and not to add it if the field has 11 characters. TIA. // Rule converted from XML Template "Barcode 1": // Choose the field(s) for your barcode. // Begin XML Template selections // var Var1 = "Barcode 1"; // "Choose a field:" (Required): FieldList var Var2 = ""; // "Choose another field (optional):": FieldList var Var3 = ""; // "Choose another field (optional):": FieldList var Var4 = ""; // "Choose another field (optional):": FieldList var Var5 = ""; // "Choose another field (optional):": FieldList var Var6 = "IDAutomationUPCEANS"; // "Pick a font:" (Required): FontList // End XML Template selections // retstr = "0"+Field(Var1); final_data = ""; if (Var2 != "") retstr += Field(Var2); if (Var3 != "") retstr += Field(Var3); if (Var4 != "") retstr += Field(Var4); if (Var5 != "") retstr += Field(Var5); final_data = '<span><f name="' + Var6 + '">' + NormalizeEntities(MakeUPCABarcode(retstr)) + '</span>'; return final_data; Also, is there a way to turn off the warning given during composition if a particular record doesn't have said barcode? I have 18 of these rules so some aren't always populated.
  11. You need to add the return: return Right(Field("access code"),3);
  12. I tested your files and I have no issue running the 1-up or the imposed.
  13. I have to ask, why are you using a Postnet? Pretty sure that barcode is not used anymore by the USPS.
  14. You could import your template into new base art using the import data source from another document (def file) in the Define data source process. Then import the Fusion Pro frames, rules, etc. using the Import function in advanced menu.
  15. Is the Postnet barcode even used anymore? You sure you don't need an Intelligent Mail Barcode? Also, you would need the plus 4 for an automation barcode for the USPS.
  16. You can try saving your data with UTF8 encoding, that has worked for me in the past.
  17. You can, you would have to modify your "RuleTemplates.English.js" file to add any additional rules to be available to any project. Also, any upgrades to newer versions would require making the change again. Not sure if support would recommend this, but it does work.
  18. Try: if (Field("Full Name") == Field("Company")) return ""; else return Field("Company")
  19. I didn't download the file but did you change the fpi file to Duplex Perfected in the layout pane?
  20. I am guessing this is more of a font issue. Try using Helvetica or something similar to see if it continues.
  21. My workaround is similar. I save the file using UTF8 encoding and all is good.
  22. Does the "Book#" sheet count as one of the 50? If not, you could use the slipsheet option.
  23. My experience with using the drop shadow on text is that it works as long as you are not using variable images. It makes an outline on the images then as well.
  24. Unless this has happened in a real recent update, this is not possible.
  25. Wow, this is great, never knew this could be done.
×
×
  • Create New...