paint() method to draw the current
frame number to the screen.
The actual code for this applet is in
Example3Applet.java.
This is the new method:
/**
* Paint a frame of animation.
*/
public void paint(Graphics g) {
g.setColor(Color.black);
g.drawString("Frame " + frame, 0, 30);
}