の配置に奇妙な問題があります
1) AS で作成した MovieClip()
2) この MovieClip() 内のテキスト フィールド。
1) の問題: MC.x = 0 を設定したとき。MC.y = 0 の場合、movieClip は左上隅に表示されません。
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);