Skip to main content
jctremblay
Community Expert
Community Expert
October 2, 2019
Question

Barcode PDF417 - Auto sorting fields value

  • October 2, 2019
  • 2 replies
  • 791 views

Hello,

When I create a Barcode field with PDF417 Symbology, I noticed that the fields content are automaticly sorted when I scan it. This when using Encoding Tab delimited or the Custom Calculated Script provided by Acrobat.

Does the only solution is to rename the fields so they appears in the correct sorted order?

Thanks!


This topic is closed to new replies. Start a new post to keep the conversation going.

2 replies

Inspiring
October 2, 2019

You could modify the script that Acrobat provides and order the fields however you like.

jctremblay
Community Expert
Community Expert
October 2, 2019

That what I have done, but the fields are still sorted.

try
{
    if ( app.viewerVersion >= ADBE.PMD_Need_Version )
        event.value = strTabDelimited({oDoc: this, aFields: ["airwaybill", "Destination", "flight", "date"], bFieldNames: false});
    else event.value = " ";
}
catch (e)
{

 

the fields are still readed as "Destination", "airwaybill", "date", "flight"