Use the printitext() call to directly draw the text into the target rastport of a window or screen. void PrintIText( struct RastPort *rp, struct IntuiText *iText, long left, long top ); The rp argument is a pointer to the rastport into which the text should be drawn. This RastPort can come from a window or screen structure. The iText argument is a pointer to a list of intuitext structures which are to be rendered. The list may contain a single IntuiText structure. If the font is not specified in the IntuiText structure, Intuition will render the text using the rastport's font. The left and top arguments give the external component, or base position for this list of intuitext structures. the leftedge and topedge values in each IntuiText structure are added to these to determine the final position of the text. intuitext objects may also be drawn indirectly by attaching them to gadgets, menus or requesters.