import java.awt.*;
import java.applet.*;


public class Applet1 extends Applet
{
	Button boton=new Button("prueba");
	Label etiqueta=new Label("fondo del applet");
	Button rojo=new Button("rojo");
	Button azul=new Button("azul");
	Button negro=new Button("negro");
	
	public void init()
	{
		setBackground( Color.blue);
		setForeground(Color.yellow);
		add (boton);add(etiqueta);
		add(rojo);add(azul);
		add(negro);
	}
	public boolean action (Event e, Object o)
	{
		if(o.equals("prueba")) boton.setLabel("boton");
		if(o.equals("boton"))boton.setLabel("prueba");
		if(o.equals("rojo"))boton.setBackground(Color.red);
		if(o.equals("azul"))boton.setBackground(Color.blue);
		if(o.equals("negro"))boton.setBackground(Color.black);
return true;
	}
	
		
	

}