Results 1 to 1 of 1
Thread: ENTER KEY ASCII CODE
-
November 5th, 2004, 01:10 PM #1
ENTER KEY ASCII CODE
I am finding it difficult to get the .swf player to perform a function call when the user hits the enter key. It's a simple implementation really... with information in an input text box, when the user has typed information and they hit enter, the function is called.
this code probably won't work if copied/pasted... just meant to illustrate what I can't quite get working...
Suggestions?Code:myListener = new Object(); myListener.onKeyUp = function () { trace("Key pressed ascii code = " + Key.getAscii()); trace(Key.getAscii()); if (Key.getCode() == 13) { enterKey(); //function call to enter key code } Key.addListener(myListener); function enterKey() { keyText.text="made it to enterKey()"; //debug }Last edited by lomelino; November 5th, 2004 at 01:15 PM.

Reply With Quote

Bookmarks