(Apple Problem ID#: 2801856 and 3305639)
Problem: Type a long string into the TextField. When the string gets too long for the TextField all previous characters are pushed out of view, instead of the string just being moved a bit in previous implementations and other platforms.
If you have any insights, workarounds or comments about this test page please contact Mickey Segal. A listing of many Macintosh Java bugs with demonstration applets is at this link, including information on how to add any necessary Java plugins.
The source code is shown below and can be downloaded from this link.
import java.applet.*;
import java.awt.*;
public class ExtraTextFields extends Applet {
public void init()
{
TextField tf = new TextField(10);
add(tf);
}
} // END OF Class ExtraTextFields