Jump to content

bkurzbuch

Registered Users - Approved
  • Posts

    116
  • Joined

Everything posted by bkurzbuch

  1. Hi Greg Thanks for the reply. I tried both of the options in the link you provided, but I can't get it to remove a space in the middle of the variable. I need the variable to look like "ABC123" but I'm getting "ABC 123". Thanks
  2. I have a project where a "Partner Code" is used in 3 places. Two are in body copy and 1 in a URL. Using the "Case selection for a name field Rule" i can get them to print as all caps or lower case where I need them to be. My questions is how do I trim out all spaces. I found how to remove leading and trailing spaces, but I need to remove all spaces incase the end user in Marcom enters it with a space somewhere. Thank You.
  3. Hi Dan This is the only message concerning the USPS IBM Font i found in the log. Warning: Font instance does not match for font USPS4CB IMB33. font: 200512,69448 style: 0,0 . Must be a duplicate. Skipped font. I ran the steps you provide in the link using terminal and everything seems to be back to normal. THANK YOU Can you enlighten me as to what that message means. Thanks again
  4. Hi Dan Yup - I know not to post the fonts here. Thanks for the tips. I'll give those a try and see what shakes out. Thanks again
  5. Mac OS Sierra 10.12.6, Acrobat 11.0.22, Suitcase Fusion 18.2.4 and FusionPro 9.3.36 I need some help trouble shooting a font problem. I have a couple of jobs we do monthly and for some reason a couple of the fonts that I've been using the last year or so will not load in FusionPro now. All my applications see them just not FusionPo. I have the entire Gotham OTF family and the font for USPS IMB that will not load now and I can't figure out what to do. It is effecting several different templates and as far as I know, there's ben no software upgrades in between when they worked and now. Did a reinstall of FusionPro and still no luck. Any ideas? Thanks for helping.
  6. Hi Dan Thanks for your reply. My apologizes, I should have been more specific. Was operator error. I wrongly assumed it was a syntax error. I copied and pasted the different codes from Indesign instead of pulling from the data it self. My bad - Live and learn. I do have a quick questions so I understand this. If you do not name the pages, you can just call out to them by page number alone, correct? Thanks again
  7. Mac OS Sierra 10.12.6, Acrobat 11.0.22 & FusionPro 9.3.36 I have a 12 page document which should output just 2 pages per record based on field"Letter Type". I have named all pages 1 through 12 and set them all to unused. The code below is On Record start to use just the 2 pages I need based on a code in the "Letter Type" Field, but doesn't seem to be working. Where is my syntax wrong? Thank You for looking switch (Field("Letter Type")) { case "ARNOT18 YP1 ACH-CC SNGL T": FusionPro.Composition.SetBodyPageUsage("1",true); FusionPro.Composition.SetBodyPageUsage("2",true); break; case "ARNOT18 YP1 ACH-CC INST T": FusionPro.Composition.SetBodyPageUsage("3",true); FusionPro.Composition.SetBodyPageUsage("4",true); break; case "ARNOT18 PHY RES ACH-CC SNGL": FusionPro.Composition.SetBodyPageUsage("5",true); FusionPro.Composition.SetBodyPageUsage("6",true); break; case "ARNOT18 PHY RES ACH-CC INST": FusionPro.Composition.SetBodyPageUsage("7",true); FusionPro.Composition.SetBodyPageUsage("8",true); break; case "ARNOT18 PHY ACH-CC INST T": FusionPro.Composition.SetBodyPageUsage("9",true); FusionPro.Composition.SetBodyPageUsage("10",true); break; case "ARNOT18 PHY ACH-CC SNGL T": FusionPro.Composition.SetBodyPageUsage("11",true); FusionPro.Composition.SetBodyPageUsage("12",true); break; default: ReportError("Can't set pages for Letter Type: " + Field("Letter Type")); }
  8. Very Nice Ste. If I wanted to replace the space in-between "Customer Name" and Master Customer ID" with a tab. How would i do that. i tried replacing the space with <t> tag but did not the results I expected. Do I also need to enter the tab amount or can i control that through the text editor where the rule is applied. Thanks Again
  9. Thank You Dan. Exactly what I needed. Have a great weekend
  10. I have a job that needs a quick turn around for are customer and my javascript skills are not up to the task. I need to pull 2 fields from a XDF. I have the main mailing data source linked to FusionPro and a XDF linked on job start up. The mailing file has a field "CUSTOMER ID"and the XDF has a field "CID". What needs to happen is search through the XDF file and find the just first 10 matches to the "CUSTOMER ID"and return the field "CUSTOMER NAME" & "MASTER CUSTOMER ID"from the XDF. Looking through the XDF there can be as many as 50 records returned, but for right now the customer wants just the first 10. Searching through the forum I can find a few similar jobs, but nothing I can alter myself to get this to work. The data return will be just customer name space and then master id. any help is greatly appreciated. Thanks You
  11. Hello All I'm setting up a new portal and am having some trouble setting up the approval process. i must be missing a step somewhere. I've entered a email address for Senior Purchaser Email and have made several product requisition only so they need a approval process, but no email shows up for approval, no email to the test customer placing the order and nothing shows up in distribution. Anyone have a idea what step I'm missing? Thank You
  12. Dan Thank you very much for taking the time to look at this and the detailed explanation. My thoughts where the same, that it wasn't see it as separate paragraphs, but was unsure how to fix that problem. Thanks again. I learn so much from this forum. Truly a great asset.
  13. Morning Dan Yes, I did select all the text. I went back and double checked that and that the return string as tagged text was selected, before I posted again. The template is attached. Thanks for taking look. I was able to get this to work by changing the three paragraphs that have to drop out with a separate text resource and calling out a rule in the main text resource. But for my own info/learning experience I would like to know why it didn't work as per your suggestion. thanks again for your help. Always appreciated. 371513_77834 Duke AH Ltr L21389 Q217_ccg.zip
  14. Hi Dan You are the best. Thank You very much. i have 1 quick questions and I can close this project out. I have attached a sample of the output. The Remove if "Containing Empty Variables."is only removing the last line of the paragraphs. On the attached sample you can see under Payroll deduction. The line "Up to (field)%. is dropping out when empty, but not the corresponding lines above it. Any advise. Thanks again, very elegant coding. Dan_Rule_Sample.pdf
  15. Hello All I have a job with a text box that has a frame on it. Text is centered vertically. My problem is, how to adjust the text box size if one or more variables is not present. I believe this will have to be done with a table, but I have no experience setting up a table. PDF attached. If any of the variable percentages is zero the that text will not print and the rest moves up also resizing the frame around the box. Thanks for your help Variable_Sample.pdf
  16. I'm trying to center a inline graphic vertically to the text with no luck. Code is below. To have control over the vertical alignment should I use a subscript ratio instead and how would I add that. Currently the graphic is aligned baseline with the tex. Thanks for the help. return Resource("Check Box") ;alignv="Center";
  17. Thanks Stu - Now I kind of get it. This seems to be my Biggest stumbling block. Getting the syntax correct. Thank you for the explanation.
  18. I have the code for 2 arrays and need some help with the proper syntax for adding "$" in front of each field. I know what I need to do, but have tried several variations with a syntax error every time. A point in the right direction would be greatly apprecatied. Thank You var OptionHeaderArray = ["Individual "+Field("Pay Period"), "Two-Party "+Field("Pay Period"), "Family "+Field("Pay Period")]; var UAArray = [Field("UA Individual"), Field("UATwo-Party"), Field("UA Family")]; var UAPlusArray = [Field("UA Plus Individual"), Field("UA Plus Two-Party"), Field("UA Plus Family")]; var OptionHeaderFilledArray=[]; var UAFilledArray=[]; var UAPlusFilledArray = [];
  19. Hi Dan Thank You Very Much. That was exactly what I was looking for. Have A Great Day
  20. Since my man concern was changing the javascript coding in the template. I posted it here. Thanks for the reply - I'll try the other forum.
  21. I have a template that use's "Ultimate Advisor and Ultimate Advisor Plus" as a drop down menu in Marcom and coded that way in the template. The customer would like me to shorten the drop downs to just "UA & UA+". Is using the "+" symbol going to cause me a problem or should I just use "UA Plus" instead. Thanks for the help.
  22. Thanks for the info Dan. As Always Greatly Appreciated.
  23. Hi Dan After my original post, I have more info from the customer and this forum and am ready to start programing these 2 tables, but am bogged down on the programing end. The 2 tables will be independent of each other and there are real only 3 instances I need to account for. 1. Header row - (Will remove if all the sue categories below are set to "remove". 2. Sub categories - (Will have 4 chooses "Advisor, Advisor Plus, Both or remove" Which will determine if there is a bullet point in column 2, 3, both or remove the entery. 3. Sub Categories with extra data - Same as 2 except with the additional text entered next to the sub category in a smaller font size. I've read over the Table Builder Basics. I can declare the table it self (I assume it will need a different name for each table. I know how to declare the number and size of the columns (3) and number of rows as this is a fixed number for each table. Where I'm getting bogged down is, Since I know the general formatting is just 3 choose's as outlined above. In stead of programming each row. Is there a way to apply the logic to multiple rows. I see the copy to function in the Table Basics, but with the field changing for each row, I'm unsure how to use it correctly. I understand the logic behind this all but not how to accomplise the syntax it self. This is always my main stumbling block when getting a new project that I can't use the Rule Wizard on. Any assistance or point in the right direction is Greatly appreciated. Thank You
×
×
  • Create New...