Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a program with two sets of tooltips:

  • Normal Tooltips that describe a JLabel in more depth
  • Tooltips that signify errors - these should have a red background color.

I know how to set the background color of a tooltip by using UIManager, but that changes the background of all of the tooltips, something that I don't want to do.

share|improve this question

2 Answers

You can Use HTML in Swing Components, including tool tips.

Addendum: There's a nice example here.

share|improve this answer
This worked. I was not aware that one could use simple CSS in Swing components. Thanks! – Cole Jun 20 '11 at 19:20
You're welcome. – trashgod Jun 20 '11 at 20:27

You could add a custom mouse listener that would display the other tool-tip.

However, this sounds a little confusing to the user.

share|improve this answer
I need the two categories of ToolTips to have different background colors. The display event shouldn't change. – Cole Jun 20 '11 at 15:35
Do you want to show both at the same time? Does the error message take precedence? – jzd Jun 20 '11 at 15:44
+1 nice thread – mKorbel Jun 20 '11 at 16:49

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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