When trying to detect backspace keystrokes by using the onKeyXXX events on a group I find that the code value does not get populated with a useful value in onKeyTyped events.
This means that detecting the keystrokes of a delete key being held down can't be done unless the programmer also provides and onKeyPressed handler and copies the KeyCode to their own variable for use in the onKeyTyped handler.
Not sure if this is intended behavior.
E.g
onKeyPressed: function (e: KeyEvent):Void {
myCode = e.code;
}
onKeyTyped: function( e: KeyEvent ):Void {
if (myCode == KeyCode.VK_BACK_SPACE) {
if (this.text.length() > 0) {
this.text = this.text.substring(0, text.length() - 1)
}
} else {
text += e.char;
}
if (textControl.layoutBounds.width > clipSize)
{
if (myCode == KeyCode.VK_BACK_SPACE) {
textControl.translateX += 5;
} else {
textControl.translateX -= 5;
}
}
println(this.text.length());
cursorPosition = textControl.layoutBounds.width
}
}
This means that detecting the keystrokes of a delete key being held down can't be done unless the programmer also provides and onKeyPressed handler and copies the KeyCode to their own variable for use in the onKeyTyped handler.
Not sure if this is intended behavior.
E.g
onKeyPressed: function (e: KeyEvent):Void {
myCode = e.code;
}
onKeyTyped: function( e: KeyEvent ):Void {
if (myCode == KeyCode.VK_BACK_SPACE) {
if (this.text.length() > 0) {
this.text = this.text.substring(0, text.length() - 1)
}
} else {
text += e.char;
}
if (textControl.layoutBounds.width > clipSize)
{
if (myCode == KeyCode.VK_BACK_SPACE) {
textControl.translateX += 5;
} else {
textControl.translateX -= 5;
}
}
println(this.text.length());
cursorPosition = textControl.layoutBounds.width
}
}
- duplicates
-
JDK-8106133 Documentation for KeyEvents should specify when "code" and "char" are valid
-
- Closed
-