I’m coding an auto-complete feature to use in flash forms.
When you are typing (in a TextInput component) suggestions start popping in a List.
If the user than press arrow Down, the focus is set to the list, so far so good.
But how can I make the list first item selected as I set the focus?
I tried using scrollToIndex(0); but didn’t work.
The way it is now, you have to press the Down key two times to select the 1st
item in the list, one sets the focus, the second works…
Any ideas?
Ty all.