开发者

Flash: Align text verticaly

开发者 https://www.devze.com 2023-02-10 15:49 出处:网络
is possible to align text in dynamic text control vertically to the mi开发者_运维技巧ddle? In flash CS3. ThanksNo, you will have to do it programmatically:

is possible to align text in dynamic text control vertically to the mi开发者_运维技巧ddle? In flash CS3. Thanks


No, you will have to do it programmatically:

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

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

精彩评论

暂无评论...
验证码 换一张
取 消