Update
[1/3] from: ptretter:charter at: 12-Oct-2001 16:29
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
[2/3] from: ammoncooke:y:ahoo at: 12-Oct-2001 16:56
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
[3/3] from: ptretter:charter at: 13-Oct-2001 5:54
Perfect Ammon. Thanks.
Paul Tretter