-
1. Re: tabindex + highlight
chall3ng3r Aug 14, 2010 3:01 PM (in response to gabi_poa)Hi,
You can use Selection.setFocus("path") function for this. For example,
Selection.setFocus("cre");
I have found that tabIndex doesn't work correctly in FL, specifically for text fields. However, I managed to make my own focusmanager using Selection.setFocus function.
Hope it helps,
// chall3ng3r //
-
2. Re: tabindex + highlight
egyhots1 Sep 19, 2011 11:06 AM (in response to chall3ng3r)I have several input textfields that are TAB-enabled. The problem I'm having is that when TAB is pressed, it highlights the textfield with an obnoxious yellow/green border. Does anybody know how to get rid of this? My AS is below:
//enable tabbing
user_input.tabEnabled = true;
pword_input.tabEnabled = true;
pword_confirm.tabEnabled = true;
user_input.tabIndex = 1;
pword_input.tabIndex = 2;
pword_confirm.tabIndex = 3;
//disable rect
user_input._focusrect = false;
pword_input._focusrect = false;
pword_confirm._focusrect = false;
Thanks in advance for any help/hints you can give me
ــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ ــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــــ ـــــــــــــــــــــــــــــــــــــــــــــــــــ
