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

[REBOL] Re: How do I update a text-list?

From: reboler:programmer at: 17-Apr-2001 14:22

Thanks a bunch, it does indeed work. I could swear that I tried "/lines" and it didn't work. Was this something that changed in View1.0 from the experimental versions? ------Original Message------ From: "GS Jones" <[gjones05--mail--orion--org]> To: <[rebol-list--rebol--com]> Sent: April 17, 2001 5:38:53 PM GMT Subject: [REBOL] Re: How do I update a text-list? From: alan parman
> How do I update a text-list? I can change the data it is based on, but
when
> I 'show' the text-list, nothing happens. I've tried text-list/data, > text-list/text, text-list/texts, text-list/lines, to no avail.
Hi, Alan, view layout [ tl: text-list data ["a" "b" "c"] button "Change List" [ tl/lines: ["new" "values" "for" "you"] show tl ] ] ....