Search code examples
actionscript-3flash-cs6

Text not appearing on textfield


To appear softkeyboard for android app i written textfield.needsSoftKeyboard = true and onclick on textfield call textfield.requestSoftKeyboard() method. keyboard is appearing..but the problem is text is not appearing on textfield...


Solution

  • Problem is textfield loses focus.Finally I got solution.We have to set Focus for that tlf textfield like this.txtField.textFlow.interactionManager = new EditManager(); txtField.textFlow.interactionManager.selectRange(0, 0); txtField.textFlow.interactionManager.setFocus();