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

-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to