I have a javafx.scene.control.TextField
and implemented the keyPressed()
, keyReleased()
, and keyTyped()
methods.
These methods will be invoked by all keys except for ^ ´ `.
The problem is that the TextField
adds these characters but I can't handle the input of these characters.
I think it's because these characters are no "real" characters and they are normally used in combination with vocals (like é, ì, ô, ú). But even when I "complete" the character (e.g. if I press ^ and then o, then the TextField
will show ô), the methods does not register the input.