这样做:
<mx:TextInput ... width="100%" />
这个不编译,说宽度是一个数字,不是一个字符串:
var textinp:TextInput = new TextInput(); someContainer.addChild(textinp); textinp.width = "100%"
如何通过ActionScript在运行时创建的组件上设置100%的大小?
那么代码中的第三行就是:
textinp.percentWidth = 100;
这也让我起了一段时间.