是否可以将动态文本控件中的文本垂直对齐到中间?在闪存CS3中。感谢
答案 0 :(得分:0)
不,你必须以编程方式进行:
var textField:TextField = new TextField();
textField.autoSize = TextFieldAutoSize.LEFT;
// ... some code here ...
var fullHeight:int = 100;
textField.y = (fullHeight - textField.height)*.5;