import java.awt.*; import java.applet.*; public class katse1 extends Applet{ TextArea t1=new TextArea(10, 10); TextArea t2=new TextArea(10, 20); public void init(){ //setLayout(new BorderLayout()); add( t1); t1.hide(); add(t2); t2.hide(); } public boolean keyDown(Event e, int key ){ if((char)e.key=='u'){ add(t1); add(t2); } if((char)e.key=='m'){ t1.hide(); t2.show(); t2.reshape(100, 100, 50, 50); showStatus("m"); } if((char)e.key=='n'){ //setLayout(new BorderLayout()); t2.hide(); t1.show(); t1.reshape(0, 0, 100, 100); showStatus("n"); } repaint(); return super.keyDown(e, key); } }