[REBOL] Re: check box setting
From: arolls::bigpond::net::au at: 29-Jun-2001 13:44
view layout [
c: check
t: choice "HR" "ab" "cd" [
either t/text = "HR" [show c][hide c]
]
]
I don't advise using "function" as a gui
object name, because it is a rebol
predefined word.
>> ? function
USAGE:
FUNCTION spec vars body
DESCRIPTION:
Defines a user function with local words.
FUNCTION is a function value.
ARGUMENTS:
spec -- Optional help info followed by arg words (and optional type and
string) (Type: block)
vars -- List of words that are local to the function (Type: block)
body -- The body block of the function (Type: block)
Anton.