-
Key.ENTER
someListener = new Object();
someListener.onKeyDown = function() {
if(Key.isDown(Key.ENTER)) {
trace("Hit the right one");
} else {
trace("Wrong ***** !!!");
}
};
Key.addListener(someListener);
I have to hold the enter key, then hit another to make it work...
Whats the deal?
-
Hey buddy,
You are coding right, and your code is also running fine but the problem is you are using flash itself to view it. And in flash "ENTER" means play the movie. Try to view your SWF in browser not in flash.
To check whether your code is running or not, put a dynamic text box in the stage and change its text on Key.ENTER
-
As dipankar.paul suggested, it should work if you test in the browser instead. if you want to use "test movie" in flash you can go to control > test movie, then control > disable keyboard shortcuts and it should now work there too.
-
Cool beans ...yeah found that out :)
www.dp-labs.com/hoa3
home owner login..
Thanks guys !!