Jump to content

MeeshKB

Registered Users - Approved
  • Posts

    65
  • Joined

About MeeshKB

  • Birthday October 24

Converted

  • Location
    Alberta, Canada

Converted

  • Occupation
    Digital Services Coordinator

Converted

  • FusionPro Products
    Yes

Converted

  • FusionPro VDP software version
    9.1.0

Converted

  • OS
    Windows 7

Converted

  • Acrobat Version
    Acrobat X (10)

MeeshKB's Achievements

Enthusiast

Enthusiast (6/14)

  • First Post Rare
  • Collaborator Rare
  • Week One Done
  • One Month Later
  • One Year In

Recent Badges

10

Reputation

  1. Maybe I'm missing a complicating factor here, but could you not just do this... case "backCTA.txt".toLowerCase(): return Field("First Name")+ ", Can you believe it's been " + Field("MONTH") + " months already?";
  2. Hi Naval. As Dan has said, it's hard to know exactly what is going wrong without some more details. But if the issue is that DSF won't upload your .zip file (I've run into this issue before), make sure that before you collect your zip you select Define HTML Form --> From Current Data and configure your fields there. This creates the xml file that DSF needs to properly utilize the web form. This is apparently a very common cause of .zip files not uploading. Hope that helps!
  3. Ste, you are the best. Revisiting my ampersand issues a year later, now that we are moving our clients from Avanti eAccess to EFI DSF. The same solution that worked for Thomas also solved my issues perfectly (as one would expect, since it looks like we're both working in DSF). Thank you!
  4. Great question, Randy! As one of those clients of yours who use the phone format rule constantly - and constantly update it - I'm definitely going to make a new copy of the rule with our common formats. Thanks Don, Ste and Dan for the thoughts on how to go about it.
  5. Dan, I don't know if you tire of hearing this or not...but you are freaking genius. Thank you. That was exactly what was happening.
  6. For some reason, one line in my contacts block is being suppressed, even though it has a value. I'm attaching an image of my text frame settings and data preview. It's the Skype line that isn't behaving as I would expect. What very basic thing am I missing here? I'm stumped.
  7. Dan's solution is (as expected) far more eloquent than mine. Glad you got it to work. :-)
  8. Try this... return Field("Disclaimer").replace(/SM/g,'<superscript>'+ "SM" + '</superscript>'); That worked for me.
  9. Thanks, Dan. I'll review this tomorrow and no doubt be back with questions.
  10. Thank you so much for this, Dan. I can definitely see that my approach was...what is the polar opposite of succinct? That. I was definitely "mowing my lawn with tweezers". In my defense, I hadn't yet learned how to use the lawnmower and was afraid of cutting my feet off. Anyway, I sincerely appreciate the guidance. I would like to explore this further even though - and I apologize for this - I learned this morning that my multi-up solution isn't suitable for this application. Because pricing is attached to these jobs on a "per layout" basis, I need a simple form which only includes one layout. That's up and running now. Regardless of that, I do want to understand this approach. Unfortunately, I am unable to work with your PDF. A version compatibility issue, perhaps? Although, I am on 9.1.0. I can open and view the PDF, but my FP menus are greyed out. I can access the Text Editor by double-clicking, but all else is inaccessible.
  11. Sorry - I didn't explain myself particularly well. I forget how many different applications FP has. This is a web form which I am loading to Avanti eAccess. Our client will use the form to choose art and indicate quantities for each double-sided poster. The composed file will look similar to the image in my previous post (except with varying pieces of art and quantities in each category). These items are set up as a bunch of frames on a single body page. The composed file is not final art but rather a "key" which will allow our CSRs to see which art needs to be retrieved and printed, as well as for production to understand which items need to be partnered for laminating back to back. I would like to include a second page in the output which lists all the art files required, and a tally of how many of each we need to print. Based on the collected job I'm attaching, it might look something like this: Antacids and Laxitives - 1 First Aid - 1 Men's Health - 1 Women's Health - 1 Skin Care - 2 Pain & Discomfort - 2 I hope this, along with the collected job, makes some sense. Thanks for whatever insight you can provide. MS-TOPPERDS.zip
  12. This is bit a of a "creative" use of FP (at least it is for me). So please bear with me. I am wondering if there is a way to return a count of the number of instances of a variable within a job. For reference and context, a composed copy of my form is attached. This is essentially what it looks like (except that there are a total of 12 available items - I cropped the image to make it easier to view). It is a form to allow our client to order double sided posters. http://i141.photobucket.com/albums/r42/Turtlegirl203/Public/Professional/MS-TOPPERDS-Output-1_zpsf9207355.jpg Basically, the user will choose artwork for each side, for each "topper" poster. They will also indicate a quantity. This form will not return the print ready artwork - rather, it will create a form suitable for them to review and confirm, and for our customer service reps to create the job. I would like to include, on the second page of the output, a summary of each art file required (resources, in my form) as well as how many total prints of each are require to fulfill the job (ie, how many occurrences of the resource within the job). I know I will need to work in some additional math for the quantities, but I wasn't sure if there is a function to count the occurrences. If anyone is still with me, could you kindly point me in the right direction or divest me of my grand illusions? MS-TOPPERDS-Output.pdf
  13. Brilliant. Thanks so much, Dan. It's working like a charm.
  14. Dan, I'm just trying this for the first time. It seems to be magnifying just the width of the type, not the height. Is this intended, or am I missing a step? Here's my code: function CopyfitLineWithMagnifyTag(line, widthInPoints, AllowToExpand) { var tm = new FusionProTextMeasure; tm.CalculateTextExtent(line); if (tm.messages) ReportError("CopyfitMagnifyLine: " + tm.messages); if (tm.textWidth < widthInPoints*87 && !AllowToExpand) return line; var factor = Round(87 / tm.textWidth * 10000, 0) - 1; return "<magnify type=setwidth factor=" + factor + ">" + line + "</magnify>"; } return CopyfitLineWithMagnifyTag('<f name="Swis721 BT">' + '<z newsize=11>' + Field("Name") + '<z newsize=6>' + ", " + Field("Designation"), 87, false);
  15. Thanks, Dan. I'll get in touch with support to see if they can offer any assistance. I appreciate the direction.
×
×
  • Create New...