************************************************************************
COMPLETE SOURCE CODE FOR : SetToolTipTextColor.java
************************************************************************
import javax.swing.UIManager;
import javax.swing.JFrame;
import javax.swing.JButton;
import java.awt.FlowLayout;
import java.awt.Color;
public class SetToolTipTextColor
{
/**
*Create a button with text ( Put your cursor on me )
*/
JButton button=new JButton("Put your cursor on me");
//Create a window using JFrame with title ( Set ToolTipText text color )
JFrame frame=new JFrame("Set ToolTipText text color");
public SetToolTipTextColor()
{
//Create a color base on RGB value
//You can get your color value base on RGB using Color picker at above
//R=255 G=255 B=255 is RGB value for white
Color textColor=new Color(255,255,255);
//Create UIManager
UIManager uim=new UIManager();
//Set tooltiptext text color using created Color
uim.put("ToolTip.foreground",textColor);
//Set tooltiptext for created button
//So, it's tooltiptext text color will be WHITE
button.setToolTipText("I am a button");
frame.setLayout(new FlowLayout());
frame.add(button);
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
frame.setSize(400,400);
frame.setLocationRelativeTo(null);
frame.setVisible(true);
}
public static void main(String[]args)
{
SetToolTipTextColor stttc=new SetToolTipTextColor();
}
}
************************************************************************
JUST COMPILE AND EXECUTE IT
************************************************************************