This manual contains information proprietary to Microcom Corporation. This information is
intended solely for the use of parties operating and maintaining such equipment described
herein.
Product Enhancements
Microcom Corporation is committed to the continual improvement of performance and
quality in our products. For this reason, specifications are subject to change without notice.
Liability Disclaimer
Microcom Corporation makes every effort to assure that all information and specifications
contained in this manual are accurate; however, mistakes are sometimes made. Microcom
Corporation shall not be liable for any damages resulting in the use or misuse of this
product. The exclusion or limitation involving consequential or incidental damage does not
apply to all states; therefore limitation mentioned above may or may not apply.
FCC Compliance Statement
This equipment has been tested and found to comply with the limits for a Class A digital
device, pursuant to Part 15 of the FCC rules. These limits are designed to provide
reasonable protection against harmful interference when the equipment is operated in a
commercial environment. This equipment generates, uses, and can radiate radio frequency
energy, and if not installed and used in accordance with the instructions contained in this
manual, may cause harmful interference to radio communications.
SolarWinds® is a registered trademark of SolarWinds.Net, Inc.
Tera Term Pro® is a registered trademark of T. Teranishi.
HyperTerminal® and HyperAccess® are trademarks of Hilgraeve Inc.
Centronics® is a registered trademark of Data Computer Corporation.
Procomm Plus® is a registered trademark of Intuitive Communications.
Arial® is a registered trademark of The Monotype Corporation.
TrueType® is a registered trademark of Apple Computer, Inc.
Microsoft®, Windows 95®, Windows 98®, Windows 2000®, Windows NT
Microsoft Corporation.
IBM® products and name are registered trademarks of International Business Machines Corporation.
Other products and company names mentioned herein may be trademarks of their respective owners.
This programming guide provides the user with an overview of the LDSII command structure
and label formatting requirements.
The Label Design Software (LDSII) is the resident printer control language that is used to
create, store and print label scripts, while also controlling the other various printer features.
LDSII can be used in conjunction with mini-computers, mainframes, personal computers,
and most other special purpose computers. The examples provided within this guide use
®
an IBM
emulation software program (i.e., Procomm Plus, HyperTerminal, HyperAccess or Tera
Term Pro). Microcom Corporation printers are shipped with serial parameters set to 9600baud, no parity, 8 data bits, and 1 stop bit unless setup with a custom configuration. The
emulator program will have to be set to these parameters for proper serial communication.
LDSII printers require the use of hardware flow control (CTS/RTS) for proper data
management to occur.
During the power-up, the indicator light will flash amber and green, the printer copies the
current application (source code or firmware) to the RAM memory. This allows for faster
transfer and operation after the printer has been powered-up. The second phase of the
power up is the printer’s initialization process and flash file system restore. This process
restores all of the files saved in the flash memory. The power-up process will vary in time
depending on the files that have been saved into the printer’s flash memory
compatible personal computer with an available serial port, and a terminal
LDSII Programming Guide - 880015-0123 1
2 LDSII Programming Guide - 880015-0123
Chapter 1: Designing Using LDSII
Label formats or scripts are very easy to design using LDSII by following these basic steps
below. LDSII printers require the use of hardware flow control (CTS/RTS) for proper data
management to occur. Software flow control should not be used to manage data being sent
to an LDSII printer.
1. Determine the media type, media size, and print speed desired for your application;
enter this data into the script header.
2. Determine the type of handling operation desired and use the appropriate LDSII
printer control commands.
3. Define the formatting instructions for the type and placement of data.
4. Enter the text data that corresponds to the formatting instructions.
5. Send the script to the printer.
1.1 Special Control Codes
The printer can accept either the one-character control code (“Ctrl + E”) or the two-character
caret (^) plus alpha character (“^E”). Control codes are processed immediately while the
^Dxx commands are processed in the order they are issued. It is recognized that some
mainframe and mini-computers cannot use the ASCII carat “^” character. The ASCII pipe
symbol “|” can be used as a substitute for these instances. Below is a list of special control
codes used by LDSII. A one (1) second delay should follow all control codes before
executing the next command to assure that the code and/or command executed correctly.
^A Begin Script: Marks the beginning of an LDSII script file entry.
^C Clear Halting Error: When issued five consecutive times with a one second delay
between each ^C the printer will clear blocking or halting error conditions returning
^Dxx command responsiveness. If the printer has remaining jobs in the queue, the
printer will return to a >PAUSED< state instead of the >READY< state. Please note
that if the condition that caused the error still exists, pressing the print button and/or
sending further scripts will cause this error to be reported again. Halting error
messages are conditions that must be corrected before printing may resume. Refer
to section 6.3 for additional information regarding error conditions.
^D Standard Command Preface: Combined with three-digit number issues a
command. See Chapter 2 for more information regarding ^D commands.
^E Printer Enquiry: Causes the printer to list its current status to an active
communications port.
^H Back Space: Causes the printer to issue a back space.
LDSII Programming Guide - 880015-0123 3
Designing Using LDSII Chapter 1
^J Line Feed: Represents a Line Feed (LF) character or 0x0A.
^K Print Test Label: Causes the printer to print a test pattern consisting of diagonal
lines used to test the condition of the dots on the print head.
^L Form Feed: Scrolls one label out of the printer using the previous formats layout.
^M Carriage Return: Represents a Carriage Return (CR) character or 0x0D.
^O Top-of-Form (TOF): Instructs the printer to perform a TOF operation which uses the
Label Present Detector (LPD) in order to retract the media to the proper alignment in
regards to the print head.
^P Print: Causes the printer to print. Note: If no label scripts are loaded or stored in the
printer’s memory, the printer will not print a label until a script is processed.
^Q Send Data: Instructs the printer to send data or resume sending data (XON).
^R Reset Printer: Instructs the printer to perform a reset through software that
duplicates a hard reset. Issuing the ^R causes the reset to occur immediately,
bypassing commands sent but not yet processed. The ^D390)0 command is a
queued or serialized version of the ^R and should be used if a reset condition is
desired programmatically.
^S Stop Sending Data: Instructs the printer to stop sending data (XOFF).
^U List Selections: Causes the printer to list the current configured selections of the
printer through an active communications port.
^V List Settings: Causes the printer to list the current configured settings of the printer
through an active communications port.
^W List Statistics: Causes the printer to list the current statistics of the printer through
an active communications port.
^X Toggle Pause: Pauses the printer if printing, resumes if the printer is currently
paused.
^Y List Enablements: Causes the printer to list the current configured enablements of
the printer through an active communications port.
^Z End Script: Marks the end of a script file.
^] Cancel All Jobs: Causes all jobs currently queued to be deleted returning the printer
to its idle state. Refer to the ^D330 command.
4 LDSII Programming Guide - 880015-0123
Chapter 1 Designing Using LDSII
1.2 Script Creation: An Overview
This section is intended to show a sample script file that will be used to explain the
individual components of the script.
A script consists of printer commands, a script header, field formats, and text data. The
script is initiated by sending an “^A)” (Begin Script) and continues until a “^Z)” (End Script)
has been received. All commands, unless otherwise noted, are terminated with either
another command or carriage return (ASCII 0x0D) character. The printer ignores the LF
(0x0A) character so it may be helpful to terminate each line with a CR+LF to assist in the
creation and troubleshooting of script files. Script files may contain up to a maximum total of
20,000 characters and up to 1000 different commands. Each command may contain up to
a total of 20 characters for the argument. This provides the flexibility in script creation to
handle even the most demanding applications.
The sample label script is listed below and will be referred to as the individual components
are discussed in the subsequent sections of Chapter 1. The actual programming
instructions that have been typed into a text file, using Windows Notepad, are in bold
typeface. These instructions are followed by a brief explanation shown within the
parentheses “()”.
^A)Sample Script
(^A indicates the beginning of the script file followed by an optional script title)
^D200)3.3, 1.9, 0.125, 1.063, 5 , 1 , 0, 0
(Script header used to define the label format or script file. Units have been entered
using inches as the unit of measure in this example.)
^F1)0.15, 1.50, @normal_14
(Field #1 formatting instructions containing text using a normal 14 point font)
^F2)0.30, 0.50,@code128auto, 3, 0.70
(Field #2 formatting instructions containing a Code128 bar code using automatic
compression)
^F3)0.60, 0.13, @normal_10
(Field #3 formatting instructions containing text using a normal 10 point font)
^T1)MICROCOM CORPORATION
(Text data for field #1)
^T2)12345678901234567
(Text data for field #2)
^T3)12345 678 90123 45 6 7 8901234
(Text data for field #3)
^D300 )1
(Instructs the printer to print one copy once the ^Z instruction is received)
^Z)(Marks the end of the script file)
LDSII Programming Guide - 880015-0123 5
Designing Using LDSII Chapter 1
12345 678 90123 45 6 7 8901234
Field #1 –
The ^F1) and ^T1) commands
are formatting this field.
MICROCOM CORPORATION
Field #3 –
The ^F3) and
^T3) commands
are used to
format this field.
Field #2 –
The ^F2) and
^T2) commands
are used to
format this bar
code.
Figure 1 Sample Script Format
1.3 Begin Script - ^A)filename
This command is used to mark the beginning of a script file. The script may be saved into
the printer’s non-volatile flash memory if a title or filename is placed after the command.
The filename may contain to a maximum of 20 characters in length and include any
character from ASCII 0x20 and 0x41 to 0x7A (alphabetical characters plus [\]_’and SP
(space character)) with the exception of the caret (^) character. Script filenames can not
use a leading zero (“0”) or 0x30 characters. A script that contains a “filename” will only save
the script and will not process and print. The “^D350)filename” would be issued to recall
and process the saved script. If the script does not contain a “filename”, the script is
processed normally and will be volatile in nature.
For Example: The previous example script’s first line is “^A)Sample Script” which would
save this script into the printer’s flash memory (non-volatile) as “Sample Script”.
1.4 Script Header
The script header consists of the “^D200)” command followed by eight parameters that
control the media layout as well as printer operation. The parameters must be separated by
a delimiter, comma by default, and are entered using the current unit of measure selected
by the “^D564)” command. The origin or the starting coordinate is always the lower left
corner as the media exits the printer. This command may be issued from outside a script
but is typically created within a script file.
The script header is used to temporarily override the individual header parameters when
issued from within a script file. The parameters may be defaulted to the current persistent
value by not entering a value between the delimiters. Each of the header parameters has
an “^D6xx)” command equivalent that when set outside a script file remains persistent.
For Example: “^D200)LSX,LSY,,DRM”, would cause the “GAP” parameter to be defaulted
to the current “^D633)” value that was set outside a script file.
6 LDSII Programming Guide - 880015-0123
Chapter 1 Designing Using LDSII
LSY
–
Y Direction
12345 678 90123 45 6 7 8901234
LSX
–
X Direction
This
The persistent commands are helpful in setting the printer up for a basic configuration and
then override them within the script. It is recommended that a script header contain values
for each and every parameter if access to the persistent command listings is not available.
^D200)LSX, LSY, GAP, DRM, SPD, DET, OFX, OFY
MICROCOM CORPORATION
is the
origin
1.4.1 LSX (Label Width) LSX
Specifies the width or “X” direction of the label in the unit of measure selected by the
“^D564)” command. The maximum LSX is the width of the print head installed in the printer.
This parameter is always required for proper script operation. See also ^D631)n command.
1.4.2 LSY (Label Height) LSX,
Specifies the height or “Y” direction of the label in the unit of measure selected by the
“^D564)” command. The maximum LSY height is 24”. This parameter is always required
for proper script operation. See also ^D632)n command.
1.4.3 GAP (Gap Size) LSX, LSY,
The GAP is the height of the registration mark on each label and/or tag. This would be the
backing material found between die-cut labels, blowhole sense mark, and/or the blackline
height. The value is entered using the current unit of measure selected by the “^D564)”
command. See also ^D633)n command.
Print Direction
(Print head limitation)
Figure 2 Script Parameters
, LSY, GAP, DRM, SPD, DET, OFX, OFY
LSY
, GAP, DRM, SPD, DET, OFX, OFY
GAP
(Virtually unlimited)
, DRM, SPD, DET, OFX, OFY
LDSII Programming Guide - 880015-0123 7
Designing Using LDSII Chapter 1
an offset registration
1.4.4 DRM (Distance to Registration Mark)LSX, LSY, GAP, DRM, SPD, DET, OFX, OFY
This parameter is typically only used when the registration mark is not located at the edge of
the media. The “DRM” is the distance from the leading edge of the media to the beginning
of the registration mark. The DRM is entered using the current selected unit of measure
selected by the “^D564)” command. See also ^D634)n command.
Print Direction
DRM, (0.72”)
Media height (LSY)
The perforation
indicates the
separation of
individual tags.
Media that contains
mark.
Registration
Mark
(Black line)
Figure 3 Distance-to-Registration Mark (DRM)
1.4.5 SPD (Print Speed)
LSX, LSY, GAP, DRM,
SPD
, DET, OFX, OFY
This is the speed of the printer while printing, which is defined in either “inches/second (ips)”
or “centimeters/second (cms) as selected by the “^D564)” command. The print speed can
be adjusted anywhere from 1 ips (2.54 cms) to 6 ips (15.24 cms). See also ^D635)n
command.
1.4.6 DET (Detection Method)
LSX, LSY, GAP, DRM, SPD,
DET
, OFX, OFY
This parameter selects the type of method the printer uses for detecting registration marks
on different media types. A selection of a “0” disables registration detection and is used in
conjunction with media that does not contain a registration mark like continuous media. The
detectors are only used to detect Stock Out conditions when a selection of “0” is selected. A
selection of a “1” uses the reflective detection method and is used when detecting
registration marks located on the bottom side of the media. A selection of a “2” uses the
transmissive detection method which requires both the upper and the lower gap detectors to
be installed on the printer. This method can be used with any type of media but is not
recommended when only detecting registration marks located on the bottom side of the
media. A selection of a “3” also uses the transmissive detection method and is used in
conjunction with media containing a blowhole. The blowhole and die-cut selections differ on
how they detect an out of stock condition. See also ^D636)n command.
0 None (gap sensors are disabled)
1 Blackline (lower gap sensor is enabled)
2 Die-cut (upper and lower gap sensors are enabled)
3 Blowhole (upper and lower gap sensors are enabled)
1.4.7 OFX (Offset X Direction)
LSX, LSY, GAP, DRM, SPD, DET, OFX, OFY
This parameter moves or offsets all fields in the “X” direction without altering the field’s
insertion points. The value is entered using the current unit of measure selected by the
“^D564)” command. See also ^D637)n command.
1.4.8 OFY (Offset Y Direction)
LSX, LSY, GAP, DRM, SPD, DET, OFX,
OFY
This parameter moves or offsets all fields in the “Y” direction without altering the field’s
insertion points. The value is entered using the current unit of measure selected by the
“^D564)” command. See also ^D638)n command.
1.5 Format Entry Command - ^Fn)
The Format Entry command is used to define the characteristics, placement and
representation of the corresponding text data of the individual fields. This command starts
with the “^Fn)” structure which is then followed by thirteen different parameters that define
and control the desired field. The “n” is an identifier that represents the field number being
formatted and corresponds to the equivalent “^Tn)” line. As with the ^Dxxx commands,
multiple parameters must be separated by the comma (“,”) delimiter. The format entry
command can be issued from outside a script but is typically created within a script file.
Unlike the “^Dxx)” commands and the script header, the Format Entry Command typically
does contain default values as there are no equivalent commands for the individual
parameters. The default values are discussed under the individual parameter descriptions.
The “n” identifies the field
number which always
starts at “1” and not “0”.
Figure 4 Format Entry Command
Field parameters
The comma delimiter
LDSII Programming Guide - 880015-0123 9
Designing Using LDSII Chapter 1
1.5.1 XB (X Coordinate) XB, YB, CI, SW, SH, AI, DN, FO, FJ, FW, CS, FC, CC
This parameter is used to set the X coordinate of the field. The X coordinate is measured
from the left edge of the media, as viewed from the front of the printer. The value is entered
using the current unit of measure selected by the “^D564)” command and may contain any
number of digits desired. A leading zero before the decimal point is not required but should
be used to make trouble shooting scripts easier (i.e., .75 should be entered as 0.75). This
parameter does not contain a default value and is required.
This parameter is used to set the Y coordinate of the field. The Y coordinate is measured
from the bottom edge of the media, as viewed from the front of the printer. The value is
entered using the current unit of measure selected by the “^D564)” command and may
contain any number of digits desired. A leading zero before the decimal point is not
required but should be used to make trouble shooting scripts easier (i.e., .75 should be
entered as 0.75). This parameter does not contain a default value and is required.
The Conversion Identifier (CI) determines how the associated text field will be rendered.
This parameter can be used to select from the available fonts, graphics, line draw feature,
and/or bar codes that will be used to render the associated Text Entry command line
(“^Tn)”). Objects that are stored in the printer’s flash memory are selected using the system
character (“@”) and the appropriate text identifier. This parameter can also be used to
select other user stored files by entering the name of the saved file into the CI parameter.
The entered values for the CI parameter are not case sensitive because the printer will
internally translate as lower case.
Resident Bitmapped Fonts
The resident fonts stored in the printer are listed in the table below. To access the resident
fonts, enter the appropriate Font Name into the CI parameter. The printer may store up to
nineteen bitmapped fonts and custom font sets are available upon request.
6 Point – 01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxwy
6 Point – 01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijk lmnopqrstuvwxwy
8 Point – 01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxwy
8 Point – 01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxwy
10 Point – 01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZab
10 Point – 01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZa
12 Point – 01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZab
Font Sample
10 LDSII Programming Guide - 880015-0123
Chapter 1 Designing Using LDSII
CI - Font Name
@bold_12
@normal_14
@bold_14
@normal_16
@bold_16
@normal_20
@bold_20
@normal_24
@bold_24
@ocra_12
Font Sample
12 Point – 01234567890ABCDEFGHIJKLMNOPQRSTUVWXYZa
14 Point – 01234567890ABCDEFGHIJKLMNOPQRSTU
14 Point – 01234567890ABCDEFGHIJKLMNOPQRST
16 Point – 01234567890ABCDEFGHIJKL
16 Point – 01234567890ABCDEFGHIJKL
20 Point – 01234567890ABCDEFGHIJ
20 Point – 01234567890ABCDEFGHI
24 Point – 0123456ABCDEGabc
24 Point – 012345ABCabcdefgh
12 Point – 0123456789ABCDEFGHIJKLMNOPQRUSTUWXYZabc
@ocrb_08
@ocrb_12
Font File Type Example:
If a normal 8 point font is desired then “@normal_08” should be entered for the CI
parameter in order for the proper font to be printed. Fonts are accessed by entering the
system character “@”, font name followed by the underscore character and then the point
size into the CI parameter.
Line Draw
The line draw feature is selected by entering “@line” into the CI parameter. The line draw
feature easily creates lines by using the XB and YB coordinates as an insertion point for the
line to start and then adjusting the SW and SH parameters to define the width and the
height of the line.
8 Point – 1234567890ABCDEFGHIJKLMNOPQRSTUVWXZYabcdefghijklmnopqr
12 Point – 1234567890ABCDEFGHIJKLMNOPQRSTUV
Table 1 Resident Bitmapped Fonts
LDSII Programming Guide - 880015-0123 11
Designing Using LDSII Chapter 1
This script would cause a line to be inserted an inch from the left side and an inch from the
bottom. The line would be 1.11” in width or length (X direction) and would be 0.01” in height
(Y direction). The “^Fn)” field must reference a “^Tn)” field for proper operation. The line
draw does not have to reference its own specific Text Entry command (“^Tn)”) and may
reference an existing Text Entry field in the script file as demonstrated in the above
example. Refer to Ch apter 4 for additional information regarding the line draw feature.
Bar Codes
The bar codes or symbologies are stored in the printer and can be selected by entering the
system character “@” followed by the text equivalent code of the desired symbology in the
CI parameter, refer to Table 2 for the available bar codes.
The bar codes that provide optional check digits can be accessed and printed by entering
“cs” immediately following the bar code text equivalent code. This is helpful to meet the
individual bar code specifications.
For example: If the user wanted to generate a human readable MSI1 that included the
check digits, “msi1cs_hr” would then be entered while “msi1_hr” would not include the check
digits in human readable form.
See Chapter 5 for more detailed information pertaining to bar codes and their individual
formatting requirements.
CI - Barcode Name Bar code Type
@codabar Codabar
@code128 Code 128 using manual compression
@code128auto Code 128 using automatic compression
@code39 Code 3 of 9
@code93 Code 93
@codei2of5 Code I2 of 5
@msi0 Modified Plessey, User provides both check digits
@msi1 Modified Plessey, User provides one check digit
@msi2 Modified Plessey, User provides no check digits
@postnet POSTNET
@uccean128 UCC/EAN 128
@data Data Matrix 2D Bar code
@pdf417 PDF417 2D Bar code
Table 2 Bar Code Index
12 LDSII Programming Guide - 880015-0123
Chapter 1 Designing Using LDSII
Graphics
The printer is capable of processing monochrome 1-bit bitmaps. If color 1-bit bitmaps are
used, it is recommended that the user use Burkes dithering method at the print resolution of
the printer. The bitmap graphic does not need a separate converter to convert to the
printer’s recognized graphic structure as the printer will do this internally. The actual “.bmp”
may be saved to the printer’s non-volatile flash memory using the “^D340)” command or into
volatile RAM using the “^D345)” command. User definable graphic images are accessed
and printed by entering the file name of the appropriate stored graphic, that was used to
save the graphic using the “^D340)” command, into the CI parameter.
Graphics may also be sent to the printer in “zipped” (.zip file extensions) form without
specifying the file size. The file size would be provided by the zipped files header and
should not be included in the command line. This also reduces the transfer time of sending
the graphic to the printer improving throughput.
Graphic File Type Example:
If a BMP graphic is saved as “my graphic” then “my graphic” should be entered for the CI
This parameter is used to adjust the width multiple of fonts, bar codes and/or lines.
Bitmapped Fonts
For bitmapped fonts, the SW can be used to adjust the width multiple of the font chosen
using the CI parameter. The parameter is entered in as an integer and has a valid range of
1 to 256. The SW default for bitmapped fonts is set a 1.
Bar Codes
The SW has a different effect when used in conjunction with bar codes. When a 0 or 180
degree bar code is selected using the CI parameter, the SW is used to modify the bar code
width by a multiple of the narrowest rendition. This means that a value of “1” will produce
the narrowest rendition related to the bar elements while a value of “3” would produce a Bar
code that is three times this width. The default value of “1” will be used if a bar code is
selected and this field is left blank. For 90 or 270 degree bar codes, the SW field would
specify the actual width or height using the current selected unit of measure. The default
SW height, 90 and 270 degree rotations, is set a value of 0.5 inches or 12.7mm depending
on the current unit of measure (“^D564)” command) setting with the default for 0 and 180
degree rotation being set to a 1.
Line Draw
The SW determines the width of a line when the CI field has selected the line draw feature.
This is a required field when used in conjunction with the line draw feature.
This parameter is used to adjust the height multiple of fonts, bar codes and/or lines.
LDSII Programming Guide - 880015-0123 13
Designing Using LDSII Chapter 1
Bitmapped Fonts
For bitmapped fonts, the SH can be used to adjust the height of the font chosen using the
CI parameter. The parameter is entered in as an integer and has a valid range of 1 to 256.
The SH default for bitmapped fonts is set a 1.
Bar Codes
The SH has a different effect when used in conjunction with bar codes. When a 90 or 270
degree bar code is selected using the CI parameter, the SH is used to modify the bar code
width by a multiple of the narrowest rendition. This means that a value of “1” will produce
the narrowest rendition related to the bar elements while a value of “3” would produce a bar
code that is three times this width. The default value of “1” will be used if a bar code is
selected and this field is left blank. For 0 or 180 degree bar codes, the SH field would
specify the actual height of the bar code using the current selected unit of measure. The
default SH height, 0 and 180 degree rotations, is set a value of 0.5 inches or 12.7mm
depending on the current unit of measure (“^D564)” command) setting with the default for
90 and 270 degree rotation being set to a 1.
Line Draw
The SH determines the height of a line when the CI field has selected the line draw feature.
This is a required field when used in conjunction with the line draw feature.
The attribute index controls the type of effect that is placed on text and/or bar codes. The
default is a setting of “0”, which is normal text or a method called OR. This causes new
black dots to be placed regardless of existing dots that may be black or white. Also, a white
area added to an existing black area does not become white, but the original black dots stay
black. The default value may be entered in as “1” or may be omitted by just entering the
comma delimiter (“,,” would use the default value). The valid values for the AI parameter
are listed in Table 3 below.
Attribute Index
Value
Conversion / Effect
0 OR (Default)
2 Reverse Video
2:1 Wide to Narrow Bar Ratio
3:1 Wide to Narrow Bar Ratio
4:2 Wide to Narrow Bar Ratio (3:1 bar; 4:2 space)
5:2 Wide to Narrow Bar Ratio
8:3 Wide to Narrow Bar Ratio
Table 3 Attribute Index
14 LDSII Programming Guide - 880015-0123
Loading...
+ 91 hidden pages
You need points to download manuals.
1 point = 1 manual.
You can buy points or you can get point for every manual you upload.