Any way to creat a barcode from a string of numbers?

Any possibilty to create a barcode from a string of letters&numbers?

Not fully in Text Blaze. However, if you can find a service that creates bar codes from via a URL, you could use the Text Blaze {image} command to do it:

Here's one I made that works well for me.

{note}Enter a Number to convert into a barcode: {formtext: name=url; default=1234567}{endnote}

{image: http://barcodes4.me/barcode/c128b/{=urlencode(url)}.jpg}

{=url}

Mike

@John_Butler, Here's one I found somewhere else here in the community that does QR codes. That's how I first got the idea for doing a regular barcode.

{note}Enter a URL to convert into a QR Code: {formtext: name=url; default=http://example.com}{endnote}

{image: https://api.qrserver.com/v1/create-qr-code/?size=200x200&qzone=1&data={=urlencode(url)}}

{=url}

Mike