我想知道是否有办法让文本字段与其内部文本使用的字体大小相同。
我尝试过的其中一个选项是:
mytextfield.height = mytextfield.textHeight
但它没有完成这项工作,因为textHeight实际上是文本中最高字母的高度,所以这不是你可以依赖的东西。
我也尝试过使用getTextFormat()。size:
mytextfield.height = mytextfield.getTextFormat().size
但它回来了:
error 1118 Implicit coercion of a value with static type Object to a possible unrelated type Number.