I am having problems with this part of the code and I was wondering if any one knew what the problem was
public void MouseExited( MouseEvent event );
The error message that i am getting is Illegal Start of Expression
Printable View
I am having problems with this part of the code and I was wondering if any one knew what the problem was
public void MouseExited( MouseEvent event );
The error message that i am getting is Illegal Start of Expression
That's a method. You don't need the semicolon at the end. Plus mouse should be lower case:
Code:public void mouseExited( MouseEvent event )
{
}