mouse over on JButton
code:
JButton b2 = new JButton ("Car sales", new ImageIcon ("car.gif"));
pane.add (b2);
b2.setBounds (25, 40, 125, 25);
b2.addActionListener (new ActionListener ()
{
public void actionPerformed (ActionEvent e)
{
//carTxt.setText ();
car ();
generatecar ();
}
}
);
there is the code now i want to make it that when the person wants to click on the Button , when the mouse moves over teh button a message must appear can some1 help me with this
thanks

