Hi, I'm writing an applet where to images move around. I have a class that extends thread and a class that extends applet (not japplet).
I added a method in the class that extends applet class called:
public void updateCoordinates(int a, int b)
But for some reason when i try to call it within the class that extends thread it I get a compile error saying it cannot resolve symbol. This is as if the method doesn't exist.
Is there some rule that I don't know about where you can't add extra methods to an applet? Thanks.
T
I added a method in the class that extends applet class called:
public void updateCoordinates(int a, int b)
But for some reason when i try to call it within the class that extends thread it I get a compile error saying it cannot resolve symbol. This is as if the method doesn't exist.
Is there some rule that I don't know about where you can't add extra methods to an applet? Thanks.
T