Answered
calling function when specific input text fields are selected
Hi,
I have a number of input text field on stage. I want to call certain function when specific input text fields are selected. Please help
Thanks
Hi,
I have a number of input text field on stage. I want to call certain function when specific input text fields are selected. Please help
Thanks
certainTextField.addEventListener(FocusEvent.FOCUS_IN,handleFocus);
function handleFocus(e:FocusEvent){
trace(e.target.name);
}
Already have an account? Login
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.