Jump to content

Search the Community

Showing results for tags 'qr code'.

  • Search By Tags

    Type tags separated by commas.
  • Search By Author

Content Type


Forums

  • Welcome
    • Start Here!
    • News
  • Software-Related Talk
    • Documentation
    • Getting Started
    • The JavaScript Library
    • FusionPro® VDP Creator
    • FusionPro® VDP Producer
    • FusionPro® VDP Server (API)
    • FusionPro® Expression®
    • MarcomCentral®
  • Support
    • Issues, Questions, Etc.
    • Digital Workflow Documents
    • Fonts
  • Off Topic
    • Customer Polls
    • Job Board (Moderated)
    • Reviews, Rants, and General Musings

Find results in...

Find results that contain...


Date Created

  • Start

    End


Last Updated

  • Start

    End


Filter by number of...

Joined

  • Start

    End


Group


About Me


Location


Occupation


FusionPro VDP software version


OS


Acrobat Version


Homepage


ICQ


AIM


Yahoo


MSN


Skype


User Title

Found 8 results

  1. My client wants the option to have a QR code generated by code (easy) or the option to upload an image for the QR code (easy) BUT if an image is uploaded the text frame for the generated code should cease to exist (hard) So the pseudo-code: if upload: frame = uploadImageFrame else: frame = qrCodeFrame Or is there a built in control that does not require a custom Rule?
  2. My company has previously used FusionPro to set up QR Barcodes on mailers that returned just a URL address, which was not a problem. We now have a situation where our marketing dept wants the QR Code to go to a customer specific page online and also deliver to them analytical results. This forces us to incorporate several fields in the data file and add code that the data team in IT sent to add to our rule. I have the code that IT sent over (what is supposed to be returned) but I'm unsure how to set it up in the Rule Editor to get it to function correctly in FP. IT Code: &pocKeyCode=[KEYCODE]&pocSource=list&referNum=[PCTNUMBER]&utm_source=mailing&utm_medium=prospect&utm_campaign=[POC"]https://www.orderpens.com/mypens.jsp?aNum=[CUSTNUMBER]&pocKeyCode=[KEYCODE]&pocSource=list&referNum=[PCTNUMBER]&utm_source=mailing&utm_medium=prospect&utm_campaign=[POC CODE]&utm_content=[MAIL NUMBER]&utm_term=QR&QR=Y The bracketed text is variable information from the data. Thank you
  3. As FusionPro has evolved...has any work been done to change any of the QR code characteristics/attributes to add personalization to the presentation of the QR code itself--such as adding a small logo to the center of the code, or the appearance of the code? If not, is there an external resource available that anyone is aware of that can be incorporated into FusionPro--through code or otherwise (see attached) to achieve something like this? The only other option that I can think of is to incorporate a third party service such as: https://app.qr-code-generator.com or, https://www.qrcode-monkey.com/ ... to mass produce the tens of thousands of the codes I need and then link them into my VDP job as variable graphic elements. I'd prefer a self-contained solution is possible....
  4. I had originally posted this in the barcode section. Hello, I'm having an issue dealing with a QR Code where there are ampersands in the destination URL. I'll paste the code I have below but please note that the first part of the URL will be changed here due to security. That isn't the area I'm having trouble with however, the problem is with the last section that reads ("&DMC-DIRECTMAIL&mid=H3W&version=A") QR Code Rule: var dataforbarcode = ("http://order.com/H3W/Main-A.asp?No=" + encodeURIComponent (Left(Field("CODE"), 8) + ("&DMC-DIRECTMAIL&mid=H3W&version=A"))); var dmbarcodeobj = new QRBarcode; dmbarcodeobj.encodingmode = (Left(Field("CODE"), 8)); dmbarcodeobj.pointSize = 3.5; return dmbarcodeobj.Make(dataforbarcode); This code returns the correct page without the customer information. I need to get the customer information to show. Thank you
  5. Customer wants an image behind the QR code. Best I could figure out is to create a image at 10% opacity and place it on top of the generated QR code (attached sample: skytronflatfile-Output.pdf). When I put the image underneath the QR code, it is covered by a white background. Do you have any suggestions about how to handle a QR with a static image underneath. skytronflatfile-Output.pdf
  6. I need to create a QR code for a URL. http://example.com/<<variable>> In my data I only have the variable part of the URL and can create a URL for that easily. How to I prepend a static "http://example.com" onto that variable before generating the QR code?
  7. I've never done this before in FusionPro8 Typically I create Vcard's via online sources - I do not see the option to create Vcards in FP8. I see the helper rule for QR Contact Information - MeCard Problem is that not all the fields I need are included. And some of the information I need is static (not entered by a variable) I need the variables Name, Cell, Phone and Email I need the static information for website and address and fax I pasted the helper rule from FP8 and inserted some comments. var NameFieldOrRule = "Name"; var PhoneFieldOrRule = "direct"; var EmailFieldOrRule = "email"; var WebsiteFieldOrRule = ""; //HELP! I need to input static information here for website. website.com var AddressFieldOrRule = "";//HELP! I need to input static information here.for address var BirthdayFieldOrRule = ""; // dont want var NoteFieldOrRule = "";// dont want //HELP how do I include a cell phone number? //HELP how do I include a fax number? var PointSize = ""; // MECARD format // http://www.nttdocomo.co.jp/english/service/imode/make/content/barcode/function/application/addressbook // Also see: http://code.google.com/p/zxing/wiki/BarcodeContents var info = { N: FieldOrRule(NameFieldOrRule), TEL: OptionalFieldOrRule(PhoneFieldOrRule).replace(/\D/g,''), EMAIL: OptionalFieldOrRule(EmailFieldOrRule), URL: OptionalFieldOrRule(WebsiteFieldOrRule), ADR: OptionalFieldOrRule(AddressFieldOrRule), BDAY: OptionalFieldOrRule(BirthdayFieldOrRule), NOTE: OptionalFieldOrRule(NoteFieldOrRule), } var result = ""; for (var label in info) { if (!info[label]) continue; result += label; if (!label.match(/\:$/)) result += ":"; result += info[label]; result += FusionPro.inValidation ? '\r' : ';'; } if (FusionPro.inValidation) return result; var QR = new QRBarcode; QR.pointSize = Int(PointSize) || 10; return QR.Make("MECARD:" + result + ";");
  8. Hi there, I think the QR code functionality could be a bit better, I think I read somewhere that Mr. Korn was asking for an example of one in order to check the coding? This is where I make vCard's and they come out fantastical. All the addresses and numbers are properly coded it seems as when I use a (good) barcode scanner on my phone it puts everything in the right contact field. Give the vCard a try. I would love to be able to use fusion pro to make these as re-typing everything many times is incredibly mind(finger?) numbing http://keremerkan.net/qr-code-and-2d-code-generator/ Dan, not sure if you could work your magic on this but I would greatly appreciate it being able to use all these fields in fusion pro. -Mike
×
×
  • Create New...