1

如何将文本区域宽度设置为 Flex 中输入的文本长度?

4

1 回答 1

0

这里我们可以根据文本的字体大小动态计算文本区域的宽度,如下所示

protected function onChange(event:TextOperationEvent):void
{

if(textBox.width <textBox.text.length*5)
textBox.width = textBox.text.length*5;
}
<s:TextArea id="textBox" height="200" width="200" fontSize="25" change="onChange(event)" />
于 2014-06-02T10:20:34.043 回答