Buttons
Posted: Fri Nov 26, 2010 6:39 pm
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
Thanks,
Warren
Questions and answers about the LiveCode platform.
https://www.forums.livecode.com/
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