Jump to content

Search the Community

Showing results for tags 'unicode'.

  • 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 1 result

  1. Hi, Maybe this is not a topic for this forum, but I'll give it a shot: In FusionPro I created a template for a business card with a QR-code on it. Because the QR-code has to be green, I used the text-variant, using this code var EncodingMode = "String"; var ErrorCorrectionMode = "L"; var PreferredFormat = "0"; var PointSize = "4"; var NoFontTag = false; var Font = "IDAutomation2D"; var ProcessTilde = false; var FieldOrRuleToEncode = "BEGIN:VCARD\n"+ "VERSION:3.0\n"+ "N:" +Field("Achternaam") + ";" + Field("Voornaam") + "\n"+ "ADR;TYPE=WORK:"+ ";;" + Rule("getStraat") + ";" + Rule("getStraatPostcode") + ";;" + Rule("getStraatPlaats") + ";" + Rule("getStraatLand")+"\n"+ "ADR;TYPE=OTHER:"+ ";;" + Rule("getPostbus") + ";" + Rule("getPostbusPostcode") + ";;" + Rule("getPostbusPlaats") + ";" + Rule("getPostbusLand")+"\n"+ "TEL;TYPE=cell:"+ Field("Mobiel")+"\n"+ "TEL;TYPE=work:"+ Field("tel. Werk")+"\n"+ "TEL;TYPE=fax:"+ Field("Fax werk")+"\n"+ "EMAIL;TYPE=WORK:"+ Field("E-mail")+"\n"+ "URL:"+ Field("URL")+"\n"+ "ORG:" + Rule("getBusiness")+"\n"+ "TITLE:"+ Field("Functie")+"\n"+ "END:VCARD"; //return FieldOrRuleToEncode; var DataToEncode = FieldOrRuleToEncode; return MakeQRBarcode(DataToEncode, ProcessTilde, EncodingMode, ErrorCorrectionMode, PreferredFormat, PointSize, NoFontTag, Font); There is a drop-down menu so the customer can pick his address which is filled out automatically. That's why there are "+rule" in this code. Offline this works great. But when I create a template, upload it to DSF and generate a business card in DSF, I can't read the QR-code anymore. Maybe this is related to the character-set?
×
×
  • Create New...