// This example is from the book _Java AWT Reference_ by John Zukowski. // Written by John Zukowski. Copyright (c) 1997 O'Reilly & Associates. // You may study, use, modify, and distribute this example for any purpose. // This example is provided WITHOUT WARRANTY either expressed or import java.awt.*; import java.applet.*; public class AnimateApplet extends Applet implements Runnable { static Image im[]; static int numImages = 12; static int counter=0; Thread animator; public void init () { im = new Image[numImages]; for (int i=0;i