I need to know if there is a way to create a qr code or even a field that can contain the info for a qr code for our inserting.
The job is using pdf files for dynamic backgrounds.
The job would be duplex.
What I need is positions 1-2 to be the current sheet number with leading zero
positions 3-4 to be the total sheets with leading zero
positions 6-11 to be the letter sequence number with leading zeros.
I assume that using an Output Preset and add the QR code by the Add additional content option is your way to go
As in regards to the required values, you can use insert one following variables in the Text input field of the Additional Barcode window for this:
“positions 1-2 to be the current sheet number with leading zero”: Use ${sheet.nr, 00}
“positions 3-4 to be the total sheets with leading zero”: Use ${sheet.sequence.set, 00}, ${sheet.sequence.segment, 00} or ${sheet.sequence.job, 00}
“positions 6-11 to be the letter sequence number with leading zeros”: Use ${file.nr, 000000} or ${job.nr, 000000}
Example: ${sheet.nr, 00}${sheet.sequence.job,00}?${file.nr, 000000}
Result: 0101?000001 (used a question mark for position 5)
Variable
Description
${sheet.nr}
Sheet number within the document
${sheet.sequence.set}
Sheet number within the document set
${sheet.sequence.segment}
Sheet number within the job segment
${sheet.sequence.job}
Sheet number within the job
${file.nr}
An automatic sequence number belonging to the current output file. It is automatically incremented for each output file that gets created within the same job.
${job.nr}
An automatic sequence number belonging to the current output file. It is automatically incremented for each new output file that gets created.
Tip: Execute the following steps to add a QR Code by an Output Preset:
Open the Designer application and go to File > New… (Ctrl + N)
Select Output Preset in the Presets folder and click on Finish, once the New… window is loaded
Check the option Add additional content under Production Options on the Print Preset page, once the Output Creation wizard is loaded
Click on Next > to go to the Additional Content page
Click on the Add button on the right side of the table shown and go to Barcode > QR Code
Insert a value like ${sheet.nr, 00}${sheet.sequence.job,00}?${file.nr, 000000} in the Text input field and click on OK, once the Additional Barcode window is loaded
My big question is one the sequence number that is a vaiable in the data can I pass that to the output preset or is there a was to create the QR in the design template so I can use data variables.