I'm using the following command to print a justified text:

^FB1800,3,0,J^FT100,200^A0B,26,26^FH\^FDLONG TEXT TO BE PRINTED, WHICH DOESNT FIT IN ONLY 3 LINES...^FS

The command ^FB1800,3,0,J prints a field block in a width of 1800 dots, maximum 3 lines, justified.

The problem is that if the text exceeds the maximum number of lines, it overwrites the last line! :( That of course makes the text of the last line unreadable.

How can I avoid that? Does anybody know if is there a way to cut the exceeding text?

The documentation says exactly that this happens:

Text exceeding the maximum number of lines overwrites the last line. Changing the font size automatically increases or decreases the size of the block.

For reference: I'm using printer Zebra 220Xi4.

Any help would be appreciated. Thank you!

link|improve this question

14% accept rate
feedback

1 Answer

Take a look at the ^TB command. It is preferred over the ^FB command and truncates if the text exceeds the size defined in the TB params

link|improve this answer
Hi, thanks for the reply. I found the ZPL Guide with the ^TB command. It says this command is available only for printers with firmware version V60.14.x, V50.14.x, or later. My printer has the firmware version V53.17.9Z. Therefore, the command didn't work, was not interpreted... Any tip? – Rodrigo Dec 5 '11 at 16:47
V53 is a later version of V50, so the TB command would work. I just tried it on my ZM400, V53.17.11. Just remember, the params are different than the ^FB command, so you have to modify them, you might also need to move your ^FT command, or you might not need it anymore – OTisler Dec 6 '11 at 3:46
I've managed to print using the TB command, I believe the problem was in the first parameter. Now, the main reason I was trying to use the FB command was because of the possibility to use the TEXT JUSTIFICATION = J (Justified). I want the Text block to be printed as "justified" (i.e. just like MS Word does). Do you know how can I achieve that using the TB command? – Rodrigo Dec 6 '11 at 12:13
I guess I'm looking for a way to use both FB and TB commands combined. FB for JUSTIFIED alignment, and TB to truncate the text without overwriting the last line. I'm trying to combine them here, but.... so far, got nothing... =/ – Rodrigo Dec 6 '11 at 12:37
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.