Hello everyone. I need some help with the key.getAscii. I have 1 txt box and a check button and I want to get the values the users enters in this text box and put them into an array So that the users array can be checked with another function for accuracy. Here is what I have so far I’m not sure how to input this into an array?
checkbtn.onRelease=function(){
var keyListener:Object = new Object();
keyListener.onKeyDown=function(){
newKey=(string.fromCharCode(key.getAscii()));
};
key.addListener(keyListener);
};
Please help! Thanks