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

[REBOL] Re: update a text-list

From: chris:langreiter at: 18-Apr-2001 18:19

> how can I change the data from a text-list.
view layout [ t1: text-list data ["1" "2" "3"] b1: button "click" [clear t1/data append t1/data ["a" "b" "c"] show t1] ] - c