0
我想創建一個文本字段,有一些文字填充它,然後得到這個文本尺寸,但是當我試圖這樣:獲取文本字段的尺寸在Adobe Flash AS2
var baka:TextField = new TextField();
baka.autoSize = true;
baka.htmlText = 'Hello World!';
trace(baka.textWidth); // undefined
trace(baka._width); // undefined
所有我對.textWidth
獲取和._width
是undefined
。爲什麼它可能如此以及如何解決這個問題?
的
autoSize
財產如果我沒有記錯,在AS2你實例使用[createTextField TextField對象createTextField
方法調用的寬度和高度參數將沒有任何意義()](http://help.adobe.com/en_US/as2/reference/flashlite/WS5b3ccc516d4fbf351e63e3d118ccf9c47f-7b78.html)方法。 –