>> ... Front panel? I haven't seen a front panel on a low- or mid-range HP printer in years. ...
Agreed, they don't tend to be used on the low-end devices; I have two printers:
LJ 1320n: has no front panel, but does have an Embedded Web Server (EWS) via which many PCL configuration settings can be made.
LJ M475dn: MFP with touch-sensitive front panel and EWS.
>> ... as Windows does not reset the printer after a print job ...
To my knowledge, all standard Windows PCL5 printer drivers 'top-and-tail' print jobs with the
Univeral Exit Language (
UEL) escape sequence (
<Esc>%-12345X) which has the same effect as the
Print Reset (
<Esc>E) escape sequence, but also puts the printer into
PJL mode.
So after any Windows print job has finished, the printer defaults
should be the
User Default Environment settings, as defined via front panel menus, or the EWS equivalent (for network models), or via special PJL 'set PCL defaults' jobs.
Since your quite old (> 10 years), low-to-mid range, printer doesn't have a front panel, nor EWS access, you may (I don't know) be able to obtain a
PCL typeface list using a special PJL job:
Set up the following in a file (e.g.
typefaceJob.PJL):
Code:
<Esc>%-12345X@PJL DMINFO ASCIIHEX = "040004010105020402015E"<LF><Esc>%-12345X
where:
<Esc> represents the
Escape character (decimal code
27, or hexadecimal
1B).
<LF> represents the
Line Feed character (decimal code
10, or hexadecimal
0A).
Then send the contents of the file direct to your printer; how to do this depends on connection; for
parallel-port, you'd use something like the following from a Windows
command-prompt session:
Code:
copy /b typefaceJob.PJL LPT1:
As regards selecting the
LJ 2200 paper trays, the
User Guide manual (reference
bpl10361.pdf) for this family of printers refers to various tray identifer settings including:
Code:
2 = manual feed, paper
3 = manual feed, envelopes
Envelopes must be placed in tray 1 with "
... short-edge in, print-side up. The stamp end must enter the printer first ...".
The recognised
# values for envelopes with the '
Paper Size' escape sequence (
<Esc>&l#A) on this printer are:
Code:
80 = Monarch
81 = Commercial 10
90 = DL
91 = International C5
The correct value must be used, as otherwise the printer won't know how far the left-edge of the envelope is from the (leading) right-edge.