Dymo Label QR automatically formats linked data as website - label

I am working to create Dymo labels using Dymo Connect templates. I wish to add QR codes containing linked data text. Whenever I link the data to the QR code it automatically formats the QR code as a website and adds "url:" at the beginning of the text. Is there a way to prevent dymo from formatting my data as a website when I add the linked data? I would prefer it to format as text.

Create your template as normal, but instead of a QR code, use a normal barcode. Open the template file with a text editor, then change the BarcodeFormat tag to contain QRCOde. You can also change the size to Large if needed.
<?xml version="1.0" encoding="utf-8"?>
<DesktopLabel Version="1">
<DYMOLabel Version="3">
...
<DynamicLayoutManager>
...
<LabelObjects>
...
<BarcodeObject>
...
<BarcodeFormat>QRCode</BarcodeFormat>
...
<Size>Large</Size>
...
</BarcodeObject>
</LabelObjects>
</DynamicLayoutManager>
</DYMOLabel>
...
</DesktopLabel>
https://developers.dymo.com/2011/11/29/printing-qr-code-part-1/

Related

Add logo to title page when backend is docbook

I am trying to customise the title page where the backend output is docbook. title, subtitle etc are all output correctly. But I cannot seem to get the title logo to output.
I have tried:
:title-logo-image: image:images/titleimage.png[]
The only way I can get this to kind-of work is to directly embed the image in the title text. But that is not ideal.
Is this possible when using docbook?
Since you convert AsciiDoc to DocBook I am assuming you are writing a book. The parameter title-logo-image you are using is not for asciidoctor (conversion to HTML and DocBook) but for asciidoctor-pdf (conversion to PDF), see https://docs.asciidoctor.org/pdf-converter/latest/title-page/#logo. If you are okay with PDF instead of DocBook you should try asciidoctor-pdf, it also allows you to customize your page it is pretty nice.
I am not sure what you expect though, is it a big picture on the first page? are you talking about the cover? If so you might want to create your own DocBook cover element and inject it in your DocBook file. This is possible in AsciiDoc by using a DocInfo file. You create a docinfo.dbk file where you write the <cover> element and the file content will then be injected in the <info> Element in the resulting DocBook file.

SpireDoc html to word preserving data tags

I am working on a template generator usecase which involves a tinyMCE editor with the option to export and import to/from Microsoft Word files.
I use SpireDoc to save html files as docx and restore docx back to html.
The problem is, as this is a template generator, I need to include some metadata along some of the html nodes. Say a user's name is inserted in the tinyMCE and the html code would look like this:
<span data-type="user-name" data-id="234">Some Name</span>
Once converted to docx, all the data- tags are stripped off. Is there a way I could tell SpireDoc to preserve those tags and to put them back in the html file when I convert docx back to html?
I know I could resort to ugly placeholders like ##USERNAME|ID## but I would prefer if I could keep my metadata tags because I also need to do that for images and the user will not be able to size/format the image if it was just a text placeholder.

Missing fields in ZPL code after EXPORT from ZebraDesigner

I created a layout using ZebraDesigner, it has fields and barcodes. I can only export to a .PRN file that contains "ZPL" code, but when I open the file, the fields are missing, I can only find the barcode's fields.
This is an example of what I am getting
As you see, there is a lot of strange code.
This is what I expected to see
The printer still prints all the fields, but the problem is that i need to see those fields in clear into the PRN file because in my program i parse the file template and replace all the fields, for example #idArticolo# with their corrispondent information picked from a database.
The strange thing is that in the .PRN file i see in clear only the barcode fields.
But normal text is not included.
The problem was the font, that was not compatible with the zebra editor.
I used one of the default zebra fonts of ZebraDesginer.

Cannot add inline image/picture to a Rich Text control

I have a Rich Text control bound to a Body field in my Domino Document data source ... all is good for formatting text , :) emoticons and the usual stuff. The problem is when I try to paste or upload an inline image I get the following error shown in the inline image (hmmmm, works here) ...
Most likely a mis-understanding of the steps:
Select the file
Click on upload image (<-- that one gets lost on lots of users)
Click OK
For a more advanced user experience:
Use the RichText Editor Evolution from OpenNTF. That makes your life much easier.

How to display image in BIRT report using XML data source?

I am using BIRT reporting tool version 2.5.2. I want to generate BIRT report in PDF format using XML data source. I have below XML node structure,
<?xml version="1.0" encoding="UTF-8"?>
<columnDetails>
<employeeDetails>
<employeeName>{Name Of Employee}</employeeName>
<employeeId>{Employee ID}</employeeId>
<employeeSalary>{Employee Salary}</employeeSalary>
<employeeImage>{Base64 encoded byte string of Employee Image}</employeeImage>
</employeeDetails>
</columnDetails>
While generating the report, my XML data source is good enough to populate the employee details except the employee image. The generated PDF report displays “The resource of this item is not reachable” in place of the image.
My image item data set is properly mapped with “employeeImage” node of the data source XML and to render the image I have defined the source as dynamicImage with dynamicImage expression as
“row[employeeImage]”
which is a Blob type data object.
Please suggest how I can fix this issue to display employee image in PDF report. Let me know incase you need any further clarification.
The image can be added
a. As an embedded image. This however reduces reusability.
b. As part of a report library.

Resources