You mean dynamically changing the text while the window is open?
view layout [
q: area "this is a test"
button "update" [q/text: "This text" show q]
]
Or dynaimcally create the box to start with?
new-q: func[text][
view layout compose [
q: area (text)
]
]
HTH!
Ammon
----- Original Message -----
From: "Paul Tretter" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Friday, October 12, 2001 2:29 PM
Subject: [REBOL] Update
>
> Take the following code:
>
> view layout [q: area "this is a test"]
>
>
> how could someone update the window so that:
>
> if some logic about what is displayed [update the area window with this
text]
>
> Paul Tretter
>
>
>
> --
> To unsubscribe from this list, please send an email to
> [EMAIL PROTECTED] with "unsubscribe" in the
> subject, without the quotes.
--
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the
subject, without the quotes.