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

[REBOL] text-list/text

From: dajoy::operamail::com at: 13-Oct-2001 22:57

Why can't I change the value of a text-list with fileList/data: ... or fileList/text: ... in this code? Is there any other way? REBOL [Title: "File Selector and Directory Navigator"] view layout [ vh2 "File List:" fileList: text-list data sort read %. [ either dir? value [ fileList/data: read value show fileList ] [ fileLocal/text: value show fileLocal ] ] fileLocal: field button "Great!" [ print join "fileList/data: " fileList/data show fileList ] ] Daniel