Capturing raw soft keyboard input on iOS
I've followed the Adobe devnet article on capturing soft keyboard input but it doesn't work on iOS 9.2.
article: Capturing soft key input | Adobe Developer Connection
Setup: AIR 20.0.0.233 overlaid on Adobe Flex 4.6, targeting iOS SDK 9.2.
I'm controlling a TextInput instance. Setting the focus to it successfully brings up the soft keyboard. However, the only way I'm able to grab any input from the soft keyboard is by attaching a TextOperationEvent.CHANGE listener to the TextInput instance. KeyboardEvent.KEY_DOWN does not trigger. I've tried attaching a KeyboardEvent.KEY_DOWN listener to the instance, to the stage, and to NativeApplication.nativeApplication, and all fail.
Using TextOperationEvent.CHANGE works somewhat, but I can't perform capture of keycodes (e.g. Keyboard.UP), which is what I really need.
What's the proper, working way to capture soft keyboard key codes on iOS?
