[F8] Submitting a form with enter
I created a Flash form that calls up a php script. Everything works fine with it but there is one thing I'd like to add. Right now you can enter info in the fields and click the submit button or tab to the submit button and press return to submit.
I really want people to be able to press return from the second field (there are only two fields) and submit WITHOUT having to tab over. My flash code looks like this:
butsubmit.onPress = function(){
requestForm.name = name_txt.text;
requestForm.email = email_txt.text;
requestForm.send("requestForm.php","_blank","POST" );
name_txt.text = "";
name_email.text = "";
}
var requestForm:LoadVars = new LoadVars();