2011-02-14 6 views

답변

0

아니, 당신은 프로그래밍을해야 할 것 :

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

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