Actionscript数据输入问题

Actionscript数据输入问题,actionscript,precision,textinput,Actionscript,Precision,Textinput,“0-9”将我的文本输入字段限制为数值 和小数点。有没有一种方法可以扩展到这样的范围 小数点后两位 很遗憾,你不能。但您可以通过listent来更改事件,并通过编程将其强制应用于TextInput <s:TextInput id="bill" x="150" y="17" width="223" borderColor="#FFFBFB" borderVisible="false" color="#EF4315" contentBackgroundColor="#100101"

“0-9”将我的文本输入字段限制为数值 和小数点。有没有一种方法可以扩展到这样的范围
小数点后两位

很遗憾,你不能。但您可以通过listent来更改事件,并通过编程将其强制应用于TextInput

 <s:TextInput id="bill" x="150" y="17" width="223" 
 borderColor="#FFFBFB" borderVisible="false"  
 color="#EF4315" contentBackgroundColor="#100101"
 enabled="false" fontWeight="bold" restrict="0-9" 
 text="0.00" textAlign="right"/>