I have a mobile AIR app with a simple layout:

<s:layout><s:VerticalLayout /></s:layout>

<s:TextArea width="100%" height="100%" />

<HGroup width="100%" >
     <s:Button label="button" />
     <s:Button label="button" />
     <s:Button label="button" />
</HGroup>

The application is set to resize when the soft keyboard opens by setting resizeForSoftKeyboard="true" in the main app. The textArea uses the default Flex 4.6 skin.
My problem is, that if the user opens the keyboard by typing text into my texArea, he will be unable to click the buttons below the TextArea, because as soon as he tries to click a button the soft keyboard lowers (because the focus it out of the TextArea?) and immediately opens again (because the mouseDown position is now above the TextArea?).

How can i prevent the soft keyboard from closing, so the user is able to click the buttons between the TextArea and the keyboard?

Thanks

link|improve this question

feedback

1 Answer

Maybe add an event to bring up the keyboard when the button is clicked i.e. in the click event handler of that button.

Also (and I havnt tried this myself), but in the deactivate event for the keyboard for that view, add event.preventDefault()

Brian

link|improve this answer
I've tried both. The problem is, that the button does not get clicked. I think this is the order of events: 1. textArea loses focus 2. keyboard goes goes down, keyboardDeactivate event dispatched. 3. mouseDown registers on the (expanded) textArea, so keyboard comes back up. – sydd Feb 3 at 23:42
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.