import javax.swing.*;
/**
 * 
 * @author capolsin
 *
 * Création d'une JApplet contenant le JPanel avec l'image défilante 
 * 
 *  
 */
public class MonImageDefile extends JApplet
{  
	private static final long serialVersionUID = 10L;
	private AfficheDefile monAffiche;
	
public void init()
  {
	//System.out.println(this.getCodeBase().toString());
	this.monAffiche = new AfficheDefile(this.getCodeBase(), "kids01.jpg", "world.gif");
    this.setContentPane(this.monAffiche);

    this.monAffiche.timer.start();
    this.setVisible(true);
  }
}
