[REBOL] Re: Button Lable
From: gchiu::compkarori::co::nz at: 18-Sep-2001 13:58
Hi Allen What's wrong with this then? I want to set the button back to "action" once the user has selected. I don't want to leave the selection showing ... rebol [] view layout [ size 200x200 test: choice "action" "print" "view" [ if equal? value "print" [ print "print requested" ] if equal? value "view" [ print "view requested" ] test/texts: copy ["action" "print" "view"] show test ] ] -- Graham Chiu