Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: Update

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