Page 1 of 1

Buttons

Posted: Fri Nov 26, 2010 6:39 pm
by warrenk
Is there anyway to change the colors on buttons. Looks like the default is grey and blue when you hover over them. How would I change the hover color?

Thanks,
Warren

Re: Buttons

Posted: Fri Nov 26, 2010 11:21 pm
by WaltBrown
Hi Warren.
Here's one way:

Code: Select all

on mouseEnter
   set the backcolor of me to "blue"
end mouseEnter

on mouseLeave
   set the backcolor of me to "light gray"
end mouseLeave
Walt