<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=ISO-8859-1" http-equiv="Content-Type">
</head>
<body bgcolor="#ffffff" text="#333333">
Peter Herth wrote:
<blockquote
 cite="mid:F014AD23EEB9B9469410D7F0334C93D303FEC71D@XCH-NW-4V2.nw.nos.boeing.com"
 type="cite">
  <pre wrap="">Hi Jeff,

the problem lies in the fact that the scrolled-text is only a
container around the contained textbox widget. So for configuration,
you need to configure that widget rather than the scrolled-textbox.
You can access it via its textbox slot. So I would write something like:
(let* ((textframe (make-instance 'frame))
    (textbox (make-instance 'scrolled-text :master textframe))
    (text (textbox textbox)))

(configure text :width 20 :height 30 :background :white)

once you got the scrolled-text widget packet, you are really only
interested in its contained textbox.

HTH,
Peter
_______________________________________________
ltk-user site list
<a class="moz-txt-link-abbreviated" href="mailto:ltk-user@common-lisp.net">ltk-user@common-lisp.net</a>
<a class="moz-txt-link-freetext" href="http://common-lisp.net/mailman/listinfo/ltk-user">http://common-lisp.net/mailman/listinfo/ltk-user</a>
  </pre>
</blockquote>
That solved that problem. Thank you. <br>
<br>
What is the format for specifying position with the SEE function? I've
tried<br>
<br>
 (see textbox '(0 0)) as the only obvious thing I could think of, but
it doesn't like that. <br>
<br>
--Jeff<br>
</body>
</html>