我希望用户只能在特定的TextInput中插入数字。有谁知道怎么做?
答案 0 :(得分:3)
http://livedocs.adobe.com/flex/3/langref/mx/controls/TextInput.html#restrict
你可以使用这样的范围:
在AS3中:
myTextInput.restrict = '0-9';
在Flex中:
<mx:TextInput id="myTextInput" restrict="0-9" />
我没有对此进行测试,但根据文档,它应该可以正常工作。