text input for mobile device with hardware keyboard
I have an application that will always run on a mobile device with a hardware keyboard. Is there a way to suppress the appearance of the soft keyboard with the TextInput class?
"The text input controls always open the keyboard when receiving focus. They ignore the needsSoftKeyboard property, and setting it has no effect on the text input controls."
This suggestion for using the preventDefault for a SoftKeyboardEvent does not work.
http://www.peterelst.com/blog/2011/05/08/controlling-the-soft-keyboard-in-flex-mobile-applications/
Is the solution basically to not use the TextInput class and handle all of the hardware keyboard events manually with an alternative like a label?
