将textarea的宽度设置为在Flex 2中输入的文本

时间:2012-11-30 12:52:46

标签: flex flex2

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

1 个答案:

答案 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)" />