posted 23 years ago
Let me make sure I understand: you are saying that I can add an InputMethodListener to my textfield and then implement inputMethodTextChanged(). I can check the source of the event, which will notify me which textfield had changed value. In doing so, this listener will notify me only when the text value has changed, not when the textfield has only received focus or the caret position has changed. Does it fire once for each change? For example, if the original value is dog, and the user wants to change it to cat, does it fire 4 times if the 1)user deletes the original value, 2)types 'c', 3)then 'a', 4)then 't'? I just need to know when the user is finished changing the value. Is this possible?
Thank you for your response!