Intermec EasyCoder 301 LinerLess – Installation & Operation Ed. 1
19
Chapter 4 Programming
ABC
Programming a
Label, cont'd.
As an example, the programming for “My First Label” is included
here to help you to get started with designing and programming
your own labels and layouts.
You can send the programme as a single string of data, with the
individual commands separated by a colon (:):
BF ON:BF "Swiss 721 BT",9,0:PP 10,20:PX 400,300,10:
PP 25,25:PM "ROM:GLOBE.1":PP 75,250:BT "CODE39":PB
"ABC":PP 75,200:FT "Swiss 721 BT",9,0:PT "My FIRST
label!":PF
↵
You can also send the same data string line by line, or type it into a
text editor and send it as a complete text file:
BF ON ↵ (enable bar code interpretation)
BF "Swiss 721 BT",9,0 ↵ (select interpretation font)
PP 10,20 ↵ (insertion point for box field)
PX 400,300,10 ↵ (create a box)
PP 25,25 ↵ (insertion point for image field)
PM "ROM:GLOBE.1" ↵ (select image)
PP 75,250 ↵ (insertion point for bar code field)
BT "CODE39" ↵ (select bar code type)
PB "ABC" ↵ (input data to bar code field)
PP 75,200 ↵ (insertion point for text field)
FT "Swiss 721 BT",9,0 ↵ (select font for text field)
PT "My FIRST label!" ↵ (input data to text field)
PF ↵ (print one label)
If you wish to create a layout which you can use to produce labels
with different text or barcode content, you must do it in two stages.
First create the layout:
LAYOUT INPUT "LABEL1" ↵ (start layout recorder)
BF ON ↵ (enable bar code interpretation)
BF "Swiss 721 BT",9,0 ↵ (select interpretation font)
PP 10,20 ↵ (insertion point for box field)
PX 400,300,10 ↵ (create a box)
PP 25,25 ↵ (insertion point for image field)
PM "ROM:GLOBE.1" ↵ (select image)
PP 75,250 ↵ (insertion point for bar code field)
BT "CODE39" ↵ (select bar code type)
PB VAR1$ ↵ (variable input data to bar code field)
PP 75,200 ↵ (insertion point for text field)
FT "Swiss 721 BT",9,0 ↵ (select font for text field)
PT VAR2$ ↵ (variable input data to text field)
LAYOUT END ↵ (save layout)
↵ = Carriage Return