[REBOL] Changing color of text in a button
From: varnoux::atmel::fr at: 14-Oct-2003 11:54
Hi List, I am writing a VID app where I have a few buttons. I would like to change the color of one of them, but if I do so, the others also change. I tried to do the following : myfunc: func [arg][arg/colors: reduce [red blue] show arg] view layout [ "button1" [myfunc face] "button2" [myfunc face] ] This worked, but _all_ my buttons text colors are changed... Vincent