message - AS3 TextInput into TextField -


i creating small chat application. want edit message in textinput field , when user hit's enter on keyboard message transferred textinput on textarea. how do this?

thank you

you need add event listener keyboard events see here

http://help.adobe.com/en_us/flashplatform/reference/actionscript/3/flash/events/keyboardevent.html#keycode

enter have specific keyboard code on event can right logic eg;

addeventlistener(keyboardevent.key_down, handlekeyboard);  function handlekeyboard(e:keyboardevent):void { // eg if (e.keycode == //the code enter ) { //your chat send message logic }  //of course find different keycodes trace(e.keycode) } 

Comments

Popular posts from this blog

Delphi XE2 Indy10 udp client-server interchange using SendBuffer-ReceiveBuffer -

Qt ActiveX WMI QAxBase::dynamicCallHelper: ItemIndex(int): No such property in -

Enable autocomplete or intellisense in Atom editor for PHP -