vote up 2 vote down star

How to prevent a specific key such as backspace key functioning from TextField editable field, preventDefault does not seem to work:

public function handleEvents(evt:KeyboardEvent):void {
 if (evt.type == KeyboardEvent.KEY_UP) {
 if (evt.keyCode==8){
   evt.preventDefault () ;
  }
}
flag

77% accept rate

2 Answers

vote up 2 vote down check

I recommend listening for the KEY_DOWN event if anything, but likely that won't work either. IIRC these type of events are a bit special and you can't really stop them. What I suspect you need to do is to store a copy of the text and whenever you detect a change you don't like just set it back to your stored version.

link|flag
vote up 0 vote down

Try adding evt.stopImmediatePropagation()

link|flag
Did you add both prevent defaul and stop propagation? Also try adding the event handler on stage – Goran Feb 12 at 12:33
not working: TextField() gets the event 1st, but I also added same listener to stage, there was no difference with both preventDefault and stopImmediate.. – Tom Feb 12 at 14:05

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.