Jump to content

QR Code issue?


Travis

Recommended Posts

I'm having an issue getting my QR code to work as a graphic rule? I have herd that there is an issue with this in FusionPro 8 but I'm stuck there because Digital StoreFront dose not support anything hire than 8.0.20. I have FusionPro 8.1.2 but my files will not upload. I don't need help with that I have been around with efi already on that. Can anyone tell me if it is my JavaScript or if there is a work around. My rule validates okay so I'm not sure? I have been using FusionPro for about 7 years for printing but I'm new to QR codes and DSF? Any thoughts would be appreciated?

 

My Graphic Rule:

var NameRuleOrField = "Name";

var MainRuleOrField = "Tel";

var DirectRuleOrField = "Direct";

var MobilRuleOrField = "Cell";

var EmailRuleOrField = "Email_Format_Rule";

var WebsiteRuleOrField = "Web";

 

var info = {

N: RuleOrField(NameRuleOrField),

Main: OptionalRuleOrField(MainRuleOrField).replace(/\D/g,''),

Direct: OptionalRuleOrField(DirectRuleOrField).replace(/\D/g,''),

Mobil: OptionalRuleOrField(MobilRuleOrField).replace(/\D/g,''),

EMAIL: OptionalRuleOrField(EmailRuleOrField),

URL: OptionalRuleOrField(WebsiteRuleOrField),

}

 

var result = "";

for (var label in info)

{

if (info[label])

result += label + ":" + info[label] + ';';

}

 

return MakeQRBarcodeGraphic("MECARD:" + result + ";");

Link to comment
Share on other sites

Another option would be to use FusionPro 8.0 on your client Mac, knowing that even though the barcodes don't show up when you compose locally, they will work when composed on the DSF, as that composes using the Windows version of FusionPro, which doesn't have the same bug.
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...