如何将文本区域宽度设置为在Flex中输入的文本的长度?
答案 0 :(得分: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)" />