import java.awt.*;
import java.applet.*;



public class Applet1 extends Applet
{
	Button ver = new Button("ver marco");
	Button ocultar= new Button("ocultar marco");
	TextArea caja=new TextArea ();
	Frame f= new Frame ("marco");
	MenuBar  borrar= new MenuBar ();
	Menu texto= new Menu ("texto");
	Menu tipo=new Menu ("tipo");
	Menu colores= new Menu ("colores");
public void init ()
{
setBackground (Color. blue);
setForeground(Color. yellow);
	add(ver);
	add(ocultar);
	f.add(caja);
	tipo.add("Arial");
	tipo.add("Times");
	tipo.add("Helvetra");
	colores.add("Rojo");
	colores.add("Azul");
	colores.add("Verde");
texto.add("tipo");
	texto.add("colores");
	borrar.add(texto);
	resize(300,300);
}
	public boolean actionn (Event e ,Object o)
	{
	if (e.target == ver)
	{
		f.resize(200,200);
		f.setLocation(100,100);
		f.setMenuBar(borrar);
		f.show();
		return true;
	}
		if (e.target == ocultar)
		{
			f.dispose ();
			return true;
		}
	String et = (String)o;
		if (e.target instanceof MenuItem)
										   {
											   if(et.equals("Rojo"))
											   caja.setForeground(Color.red);
											   if(et.equals("Azul"))
											   caja.setForeground(Color.blue);
											   if(et.equals("Verde"))
											   caja.setForeground(Color.green);
											   if(et.equals("Arial"))
											   caja.setFont(new Font  ("Arial", Font. PLAIN,12));
											   if(et.equals("Times"))
											   caja.setFont(new Font  ("Times", Font. PLAIN,12));
											   if(et.equals("Helvetra"))
											   caja.setFont(new Font  ("helvetra", Font. PLAIN,12));
										   return true;
		}
		return false;
		
	
	}
}
