parameters to "choice"
[1/3] from: mh983:operamail at: 18-Jul-2001 10:07
Anyone know how to pass a series as the values to a "choice" in Rebol/View? Here is
the typical example of using a
choice:
view layout [choice "Homer" "Marge" "Bart" "List" "Maggie"]
which works good, but the following does not work:
names: ["Homer" "Marge" "Bart" "List" "Maggie"]
view layout [choice names]
Any idea how to do this? Any help would be appreciated. Thanks!
Mike
p.s. Has anyone else noticed that (on Windows at least), the example above causes the
last 3 items in the choice to not
be visible since it's goes off the end of the window?
[2/3] from: arolls::bigpond::net::au at: 19-Jul-2001 2:10
Re: parameters to "choice" - data
[3/3] from: rotenca::telvia::it at: 18-Jul-2001 18:29
R: parameters to "choice"
Da: "Mike" <[mh983--operamail--com]>
> names: ["Homer" "Marge" "Bart" "List" "Maggie"]
> view layout [choice names]
>
> Any idea how to do this? Any help would be appreciated. Thanks!
choice data names
romano