AIX Laserjet 4+ specify tray to print to


 
Thread Tools Search this Thread
Operating Systems AIX AIX Laserjet 4+ specify tray to print to
# 1  
Old 03-05-2008
AIX Laserjet 4+ specify tray to print to

Is it possible to specify the tray you would like to print to in AIX? We are using the laserjet 4+ driver. Thanks in advance
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. Solaris

Solaris 5.9 - HP Laserjet 9050dn

Hi there, I hope someone could shed a light on my problem. OS is running in local zone (global zone - 5.10). We use many printers from Ricoh etc. Most of them are running fine if configured as below (for Ricoh printers I use their installer): lpadmin -p _printer_ -v /dev/null -A write -i... (0 Replies)
Discussion started by: cyjan
0 Replies

2. Solaris

Printing to HP Laserjet M1212nf MFP

Server: Solaris 10 Have a HP Laserjet M1212nf MFP attached to a PC on tcp/ip connected to USB port. Has anyone tried to print to this printer from Solaris? Not using CUPS. netpr command called is: /usr/lib/lp/bin/netpr -b -f l -I 191162p-15497 -U user@server -p 191162p -d... (0 Replies)
Discussion started by: pmm
0 Replies

3. Hardware

Fan Tray for Sunfire T2000

Recently the rear fan assembly of one of our T2000 servers went faulty. I could replace it immediately with the one from a currently powered off standby machine. But now this one has to be replaced. So I got a quote from our supplier who charges EUR 776 for a new spare part or EUR 405 (all... (0 Replies)
Discussion started by: hergp
0 Replies

4. AIX

chvirprt and tray 1

Hi, I'm not able to print on tray 1. I checked the configuration and I get these 3 options: $lsvirprt -q print1 -d hp@xprint -a _O Name Description Value _O Type of INPUT PAPER HANDLING (backward 1 ... (0 Replies)
Discussion started by: imad77
0 Replies

5. UNIX for Advanced & Expert Users

tray selection

Hello All, Could anyone help me how to selecting the trays in unix . Thanks, Amit kul (3 Replies)
Discussion started by: amit kul
3 Replies

6. UNIX for Dummies Questions & Answers

Changing the default print tray in Unix

I have a unix based app that I'm trying to print to an HP Laserjet 4050n but it keeps defaulting to Tray 1. I need it to print to Tray 3. When I print to the printer from a windows based app it prints to the correct tray specified. It was printing ok previously but I had to to a cold reset... (1 Reply)
Discussion started by: tnix
1 Replies

7. AIX

HP Laserjet 2200dtn Drivers

Hello, We have an AIX version 4.3 server here, and I have installed an HP Laserjet 2200dtn, via a JetDirect card, on the system, and currently, the driver is setup as an hplj 4+, I know that works for some HP Lasers, but I don't think it works with this one, because when we print reports... (1 Reply)
Discussion started by: AztexSun
1 Replies

8. UNIX for Advanced & Expert Users

tray selection using lp command

I have a HP laserjet 9000 printer on a Sun Solaris server. I try to print using lp command to different trays. But it gives an error. The command that i used is lp -dprinter_queue -otray2 file_name (1 Reply)
Discussion started by: avinashrm
1 Replies

9. UNIX for Dummies Questions & Answers

Installing HP LaserJet 4550N

We have an HP LaserJet 4550N on our network and i like to install that Printer to my Unix machine (solaris 5.8) i have read alot of diffrent Post's here but haven't been able to solve it. Is it that hard to install an HP printer to an Unix machine . . could some one please give me an hint where to... (2 Replies)
Discussion started by: sajjan2
2 Replies
Login or Register to Ask a Question
Tray(3I)						    InterViews Reference Manual 						  Tray(3I)

NAME
Tray - compose interactors into arbitrary or constrained layouts SYNOPSIS
#include <InterViews/tray.h> DESCRIPTION
A tray is a scene of interactors that overlap, tile, or have other constraints on their alignment relative to each other. One of the interactors in a tray can serve as a background for the other interactors. Constraints on the layout of interactors are made by aligning interactors to each other. Two interactors are aligned by specifying which edges coincide. For example, the lower left corner of one interactor may be aligned to the upper right of another. TGlue objects can be used to introduce transparent space between aligned interactors. TGlue has a natural size, shrinkability, and stretchability (though TGlue objects are not interactors). Trays stretch or shrink the TGlue along with the aligned interactors to satisfy the alignment constraints. The tray adopts the shape of the background interactor if there is one; otherwise, the tray's shape depends on the shapes of its components and potentially on their alignments. By default, a tray without a background takes on a width and height equal to the largest of the widths and heights of its components. However, alignments involving the tray can in effect override this default. For example, if the left and right sides of a particular component are aligned to the tray's left and right sides, respectively, then the tray's sides are constrained to coincide with the component's sides. Thus the tray will adopt the width, horizontal shrinkability, and horizontal stretchability of that component. Another example: To ensure that a tray circumscribes a collection of (mutually aligned) com- ponents, align the outer edges of the components on the periphery of the collection to the outer edges of the tray, thereby constraining the tray to assume the shape of the collection. TGLUE PUBLIC OPERATIONS
TGlue(int w = 0, int h = 0, int hstretch = hfil, int vstretch = vfil); Define TGlue of a minimum size. The TGlue can stretch from the given size but cannot shrink. TGlue(int, int, int hshrink, int hstretch, int vshrink, int vstretch); Define general TGlue with a given natural size (width and height), shrinkability, and stretchability. TRAY PUBLIC OPERATIONS
Tray(Interactor* background = nil) Create a new tray, optionally having an interactor as a background. void Align(Alignment, Interactor*, TGlue* = nil) void Align(Alignment, Interactor*, Alignment, Interactor*, TGlue* = nil) Align an interactor to another interactor (the tray itself by default), optionally with TGlue between them. Align operations insert interactors into the tray if they have not been inserted already. void Align(Alignment, Interactor*, ..., Interactor* = nil) Apply an alignment to a set of interactors. This operation is shorthand for aligning the interactors to each other explicitly. For example, Align(Left, i1, i2, i3, i4) aligns the left sides of interactors i1 through i4. Two to seven interactors can be aligned at once. void HBox(Interactor*, ..., Interactor* = nil) void VBox(Interactor*, ..., Interactor* = nil) The HBox and VBox operations align the specified interactors such that they tile left-to-right and top-to-bottom, respectively. These operations align in one dimension only. Two to seven interactors can be aligned at once. If the first (last) component is the tray or the background interactor, then the leftmost (rightmost) component will be aligned with the left (right) side of the tray. void Insert(Interactor*) Insert an interactor into the tray without an alignment. The interactor will appear in the lower left corner of the tray. void Change(Interactor*) Notify the tray that the given interactor's shape has changed. The tray will recompute the layout of its component interactors to satisfy any alignments. If the tray does not contain a background, then a change in the shape of one of its components may in turn change the tray's shape. If the tray has a background, then the tray's shape will change only if the shape of the background changes. void Remove(Interactor*) Take an interactor out of a tray and eliminate any alignments that have been made to it. SEE ALSO
Interactor(3I), Scene(3I), Shape(3I) InterViews 8 September 1988 Tray(3I)