AS3最大文本字段的宽度

voz*_*ris 4 flash actionscript-3 textfield

如何设置Textfield的最大宽度?
我需要自动宽度,直到它达到最大宽度,因此长文本将分成行.

str*_*rah 5

var maxWidth:Number = 200;

textField.multiline = false;
textField.wordWrap = false;
textField.autoSize = TextFieldAutoSize.LEFT;

textField.text = "Lorem ipsum";

if (textField.width > maxWidth)
{
    textField.multiline = true;
    textField.wordWrap = true;
    textField.width = maxWidth;
}
Run Code Online (Sandbox Code Playgroud)