ehanna
July 31st, 2000, 03:05 PM
Hi every body
I am doing an applet that it will draw a string letter by letter. I want to be able to change the sting color when the mouse enter I do that
public boolean mouseEnter(Event e, int x, int y)
{
setForeground(Color.red);
repaint();
return true;
}
But in internet explorer it apply the color for the new string and not the one that has been already drawn. for Netscape id does not change at all.
Thank you
I am doing an applet that it will draw a string letter by letter. I want to be able to change the sting color when the mouse enter I do that
public boolean mouseEnter(Event e, int x, int y)
{
setForeground(Color.red);
repaint();
return true;
}
But in internet explorer it apply the color for the new string and not the one that has been already drawn. for Netscape id does not change at all.
Thank you