Flash:垂直对齐文本

时间:2011-02-14 17:09:42

标签: flash flash-cs3

是否可以将动态文本控件中的文本垂直对齐到中间?在闪存CS3中。感谢

1 个答案:

答案 0 :(得分:0)

不,你必须以编程方式进行:

var textField:TextField = new TextField();
textField.autoSize = TextFieldAutoSize.LEFT;
// ... some code here ...

var fullHeight:int = 100;
textField.y = (fullHeight - textField.height)*.5;