I have a textArea and would like to prevent the default behavior for certain keys such as the enter key from being run upon user input. However, KeyboardEvent is not cancelleable so preventDefault does not work. Does anyone know how this could be done?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Think I found a pretty easy workaround just using the TextInput event which is cancelleable and does the trick for the enter key. Also, TextInput event doesn't fire for the backspace key, which doesn't affect what I'm trying to do here but fyi.

link|improve this answer
What do you do exactly? Do you listen for the event, check what keys were presses, and do nothing if its a certain key? If you put in a little bit of the code in you answer it would be worth another +1:) – Brian Bishop Feb 3 '11 at 11:45
1  
@Brian was about to put in the code but eldamar's code below is exactly what i did – Steven Feb 3 '11 at 20:29
Thanks, good follow up. – Brian Bishop Feb 4 '11 at 8:36
feedback

Something like this might work? i haven't tried this my self tho.

textArea.addEventListener(TextEvent.TEXT_INPUT,onTextInput);

private function onTextInput(e:TextEvent):void {
   if (e.text == '\n') e.preventDefault();
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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