如果我在ActionScript 3中創建了TextField
,我可以用TextFormat
更改寬度,但是如何更改高度?如何更改TextField的高度?
例子:
var label : TextField = new TextField();
label.text = "Hello World!";
label.background = true;
label.backgroundColor = 0x800000; // Red background to see TextField boundary
label.autoSize = "center";
var format : TextFormat = new TextFormat();
format.leftMargin = 20;
format.rightMargin = 20;
label.setTextFormat(format);
addChild(label);
// Setting the height explicitly doesn't work
label.height = label.width * 1.5;
啊,這確實有用。出於某種原因,當我第一次嘗試刪除它時似乎沒有什麼區別。 – Alex 2011-01-20 17:07:20