Jump to content

128 Barcode


Naval

Recommended Posts

Hi All,

I use fusion pro for EFI Digital Storefront to build templates for my customers. I have a customer who wants 128 bar code generated from DSF. The Code is WBD00005001 and on wards. Can any one please help me on how do i get FP to generate 128 bar code and also the serial number. I have attached a PDF of what i am working with. Any help will be much appreciated.

 

Naval

Bin Delivery Label.pdf

Link to comment
Share on other sites

The Code is WBD00005001 and on wards. Can any one please help me on how do i get FP to generate 128 bar code

This sounds like a ticket-type job, where you would have a data source of "None" and set the record range on the Input tab of the Composition Settings dialog. Then you could make a rule like so:

var data = "WBD" + FormatNumber("00000000", 5000 + FusionPro.Composition.inputRecordNumber);
return'<span><f name="IDAutomationC128L">' + Make128Barcode(data) + '</span><br>' + data;

And insert that rule's name into a text frame.

and also the serial number.

Sorry, I don't know what you mean by a serial number.

Link to comment
Share on other sites

Hi Dan,

Thanks for that. For some reason it is not generating a barcode for me. I have attached what i have done so far. I am trying to upload this to EFi DSF for customers to order as well and trying to compose it is fusion pro but it is not generating barcodes.

 

Do you know what could be causing this.

 

Look forward to hearing from you.

 

Thanks

Data.txt

WBD Label.zip

WBD Label.pdf

Link to comment
Share on other sites

Hi i am trying to produce 5000 bar codes but i keep getting:

Incomplete entity definition ÇÎ

Incomplete entity definition ÇÎ

Unknown Entity &ÇÎ in record 6

 

It is not only record 6 but there are other records with same issue

Would you know what could be causing this?

 

Thanks in advance.

 

Naval

Link to comment
Share on other sites

Hi i am trying to produce 5000 bar codes but i keep getting:

Incomplete entity definition ÇÎ

Incomplete entity definition ÇÎ

Unknown Entity &ÇÎ in record 6

 

It is not only record 6 but there are other records with same issue

Would you know what could be causing this?

 

You need to convert the raw barcode data to tagged markup, with the TaggedTextFromRaw function, like so:

return'<span><f name="IDAutomationC128L">' + TaggedTextFromRaw(Make128Barcode(data)) + '</span><br>' + data;

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...