nlscan.com
Page 164
Batch Programming
Formatter Command Type 6
Move Commands
F5 Move the cursor forward a number of characters
Syntax=F5nn (nn: The numeric value (00-99) for the number of characters the cursor should be moved
ahead)
Move the cursor ahead “nn” characters from current cursor position.
F5 Example: Move the cursor forward and send the data
Move the cursor forward 3 characters, then send the rest of the barcode data from the barcode above. End
with a carriage return.
Command string: F503F10D
F5 is the “Move the cursor forward a number of characters” command
03 is the number of characters to move the cursor
F1 is the “Send all characters” command
0D is the hex value for a CR
The data is output as: 4567890ABCDEFGHIJ
<CR>
Key Modifiers
No Key Modifier
00
Shift Left
01
Shift Right
02
Alt Left
04
Alt Right
08
Control Left
10
Control Right
20
For example, B501001F inserts an “a” on a U.S. style keyboard. B5 = the command, 01 = number of keys
pressed (without the key modifier), 00 is No Key Modifier, and 1F is the “a” key. If an “A” were to be
inserted, B501011F or B501021F would be entered.
If there are two keystrokes, the syntax would change from Syntax=B5nnssxx for one keystroke to
Syntax=B5nnssxxssxx. An example that would insert “aA” is as follows: B502001F011F.
Note: Key modifiers can be added together when needed. Example: Shift Left + Alt Left + Control Left =15