[REBOL] Re: How to change an existing button's colour
From: brock:kalef:innovapost at: 30-Jan-2008 12:00
Closer yet... This changes the gradient and the colour. view lay: layout[ b1: button "Hello" red b2: button "World" [b1/effects: reduce ['gradient 0x-1 blue + 32 blue - 32] b1/text: "Changed" show b1] ]