Flex 4 detect if user presses enter key
The secnario is simple if the user presses enter while in the password field, I would开发者_如何学Python like to submit the login for for processing.
How can I detect that event from with in the specific text box.
Thanks in advance
You don't need to worry about keyPress events in this case. TextInput
conveniently dispatches an enter event when user presses enter.
<mx:TextInput id="passwd" displayAsPassword="true" enter="submit()"/>
Script:
private function submit():void
{
var pw:String = passwd.text;
//submit the login here.
}
This is applicable for spark TextInput also.
keyDown="if (event.keyCode==Keyboard.ENTER){ userRequest.send();}"
精彩评论