(Apple bug report # 3811376)
Steps to reproduce:
Problem: Inkwell won't insert text into the TextField on the right (echoing asterisks).
Other environments: Everything works fine in Java 1.3 (using Internet Explorer, frozen at 1.3) and on Windows XP Tablet Edition SP2 (Tablet 2005).
Inkwell may seem like a backwater today but it will become very important if Apple releases a tablet computer.
If you have any insights, workarounds or comments about this test page please contact Mickey Segal. A listing of many Java resources is at this link.
import java.applet.*;
import java.awt.*;
public class ink_badly extends Applet {
public void init()
{
setBackground(new Color(225,225, 255));
TextField regularTextField = new TextField(5);
add(regularTextField);
TextField starEchoTextField = new TextField(5);
add(starEchoTextField);
starEchoTextField.setEchoChar('*');
}
} // END OF Class ink_badly