vote up 1 vote down star

I am making a game and when I disable a button with setEnabled(false); the buttons turn grey which clashes with the other colors in the game. Is their a way to change the color of the button when it is disabled?

flag

4 Answers

vote up 1 vote down

You'll want to modify the Look and Feel you are using. There are tons available for download and you can of course make your own.

link|flag
vote up 0 vote down

You can also set a disable icon with JButton.setDisableIcon()

link|flag
vote up 0 vote down

i am not 100% on this, but i think you can overwrite the paint method of the button's glasspane to overlay it with the color of your choice.

here is a tutorial on the panes of a container:

http://java.sun.com/docs/books/tutorial/uiswing/components/rootpane.html

link|flag
Individual components don't have a glasspane. The glasspane is for the entire frame. – camickr Oct 19 at 20:21
vote up 2 vote down

If you are talking about the text, then you might be able to use the UIManager to change the disabled foreground color. Check out the UIManager Defaults.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.