09-10-2012 02:53 AM
Hi everyOne,
In my app iam generating the output while the user is typing the data in text input field, for that iam adding actionlistener to keyboard,
the problem is i did nt get the data while typing i need to wait for some time or need to press enter or esp keys
wts the prbelm can any one tell me. here is my code
searchInput.prompt = "Search..."; searchInput.addEventListener(KeyboardEvent.KEY_DOWN, keyDownHandler); private function keyDownHandler(event : KeyboardEvent) : void{ dao.getDatabyKeyword(searchInput.text,onSuccessful lyRetrived); } //here getdatabykeyword is my database method and on succesfullyretrived is display data method no problems with these two methods i tested those.
Solved! Go to Solution.
09-10-2012 08:18 AM
09-10-2012 09:59 AM