Jump to content

Scott

Registered Users - Approved
  • Posts

    26
  • Joined

Converted

  • FusionPro Products
    No

Scott's Achievements

Explorer

Explorer (4/14)

  • First Post Rare
  • Collaborator Rare
  • Conversation Starter Rare
  • Week One Done
  • One Month Later

Recent Badges

10

Reputation

  1. Hello, I am trying to create a QR Code for the back of a business card that will create contact information for an iPhone or Android. The built in rules do not carry enough information, leaving out title and department for example. I can colorize a MeCard output, but I cannot customize the fields, so it will not produce the title and some other stuff the client wants. When I try VCard, I cannot colorize the barcode, but I can get the fields I need. Here is my code... // vCard format // http://en.wikipedia.org/wiki/VCard // Note that support for vCard may be more limited than for MECARD, // and that vCard requires more data to be encoded, resulting in a denser barcode. var foreColor = "Red"; // this is not working var info = { N: Field("LastName") + ';' + Field("FirstName") + ';' + Field("MiddleName") + ';;', FN: Field("FirstName") + ' ' + Field("MiddleName") + ' ' + Field("LastName"), DEPT: Field("Dept"), ORG: Field("Company"), TITLE: Field("Title"), "EMAIL;type=INTERNET;type=WORK": Field("Email"), "TEL;type=CELL": Field("Cell"), "TEL;type=WORK": Field("Phone1"), "ADR;type=WORK": ";;" + Field("Address1") + ';' + Field("City") + ';' + Field("State") + ';' + Field("ZIP"), "URL;type=WORK": Field("Website"), } var result = ["BEGIN:VCARD", "VERSION:3.0"]; for (var label in info) { if (info[label]) result.push(label + ":" + info[label]); } result.push("END:VCARD"); return MakeQRBarcodeGraphic(result.join(Chr(13) + Chr(10)), foreColor); Can anyone help?
  2. thanks Dan. That is the problem I am sure. No time to verify it right now, but I am pretty sure that is it. I was hesitant to post the rule for the very same reason, basically that I would encounter formatting (for lack of the correct word) issues while posting code. I figured someone would be able to answer in such a way that I would understand. thanks again, Scott
  3. I just ran into an issue with something similar to this. I custom created a pantone color. "PANTONE 281 M". The problem I had was that with in a rule where I was applying color to certain areas of text, the color "PANTONE" could not be found. I suspect it was the space in the name of the color that messed this up, but I am not savvy enough to figure out how to get around this. I ended up editing (using pitstop) the other color elements to "CustomerBlue" and then adding that color to the fusionpro pdf. That worked.
  4. Thanks for the reply Step. We are using 6.1P1e still. I am pretty sure the font was loaded at the correct size, set to windows without kerning, but I will double check it when I get the chance. If I get some time I will look into SmartStream, but I was under the impression that SmartStream didn't handle bar codes all that well. Doesn't it lack the ability to calculate the check sum numbers?
  5. Hello, I am having issues with jlt files when I am creating a job that has the Barcode 128. I have applied the 128 Barcode Rule and I am using the font "IDAutomationC128M". I tried contacting HP since we are sending to an Indigo 5500. But they say that the problem is with FusionPro Desktop. We printed a job with barcode numbers ranging from 10058001 - 10116000. Most of the job printed successfully. But some of the barcodes did not. Each of the bad barcodes had the numbers 60 somewhere in the code. But, many barcodes with 60 in the code printed successfully. Anyways, it seems there may be a "bug" or flaw in the jlt engine that is unable to create a file that prints accurately. The font and the rule appear to be working properly since I can see it accurately in the preview, and when I create a PDF. I tried reloading the font on the HP differently (with kerning on and off for example), but nothing worked (and sometimes got worse). Anyone have any insight? - Scott
  6. Ok, I got this sample to work, and then with that knowledge applied it to my job. I have a few questions... 1) Why is the text box on the overflow page larger than the actual page in acrobat? 2) Why is the box offset (Y coordinate is -.15")? 3) When I print (or distill) the .ps file created all of the landscape pages are correctly imposed to portrait, but they seem to be both offset and stretched, and actually run off the page.
×
×
  • Create New...