actionscript 3 - AS3 softkeyboard auto slide up -


i having trouble have softkeyboard auto slide on ipad.

here code trigger softkeyboard, doesn't work somehow...

this.dispatchevent(new softkeyboardevent(softkeyboardevent.soft_keyboard_activating, true, true, null, softkeyboardtrigger.content_triggered)); 

anyone have suggestion?

try this:

tf.type = textfieldtype.input; tf.needssoftkeyboard = true; tf.addeventlistener( focusevent.focus_in, onfocus );   private function onfocus( e:focusevent ):void {     tf.requestsoftkeyboard(); } 

Comments

Popular posts from this blog

javascript - Count length of each class -

What design pattern is this code in Javascript? -

hadoop - Restrict secondarynamenode to be installed and run on any other node in the cluster -