TextField radField; // radius TextField declared

public void init()
{
radField = new TextField(15);
add(radField);
add (new Label ("centimetres"));
radField.addActionListener (this);
} // radius TextField added to the applet

Ok this is my TextField. It's fine, it does the job.... but it appears at the top of the applet and i haven't been able to work out how to move it?

How do you specify where the TextField goes? However i've arranged my code it always appears at the top of the applet?

Pyra