我在定位时遇到了奇怪的问题
1) 我用 AS 创建的 MovieClip()
2) 此 MovieClip() 内的文本字段。
1) 的问题:当我设置 MC.x = 0; MC.y = 0 影片剪辑不会出现在左上角。
2) 的问题:文本既不垂直也不水平居中。
我的 AS3 代码:
var button:ButtonMC = new ButtonMC();
button.y = 100;
button.x = 100;
button.width = 260;
button.height = 50;
button.buttonMode = true;
button.useHandCursor = true;
button.mouseChildren = false;
var tf:TextFormat = new TextFormat();
tf.size = 70;
tf.bold = true;
tf.font = "Arial"
tf.color = 0xFFFFFF;
var myText:TextField = new TextField();
myText.defaultTextFormat = tf;
myText.autoSize = TextFieldAutoSize.CENTER;
button.addChild(myText);
myText.text = 'ThisIsATestText1234';
myText.y = button.height * 0.5 - myText.textHeight * 0.5;
addChild(button);