How do?

Edit the field with numeric keypad, not a full keyboard

my code:

    <s:TextInput text="{TransactionObject.cartao}" id="item" restrict="0123456789"  />

app for Android and playbook

link|improve this question
it should work automatically in AIR. is this an AIR application or browser-resident Flash RIA? – TheDarkIn1978 Jul 27 '11 at 0:22
App air for playbook and android – Will Jul 27 '11 at 4:22
feedback

2 Answers

up vote 3 down vote accepted

The numeric keyboard is not available in the current release of Adobe AIR.

link|improve this answer
feedback

You can't get the phone keypad but you can get numbers with this and you don't even need the restrict statement:

<s:TextInput softKeyboardType="{SoftKeyboardType.NUMBER}" />

If you don't import flash.text.SoftKeyboardType just use the literal "number". Available in Flex SDK 4.6.0.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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