public class trackImage extends Applet implements Runnable
Fields Summary
Thread
play
Image
thePicture
MediaTracker
theTracker
Constructors Summary
Methods Summary
public void
init()
thePicture = getImage(getDocumentBase(), getParameter("imagefile"));
theTracker = new MediaTracker(this);
theTracker.addImage(thePicture, 1);
play = new Thread(this);
play.start();