AS2 textWidth 属性
我在 Flash CS2 中使用 TextField,因为我需要知道实际文本的宽度以进行定位。然而,由于某些奇怪的原因,当浏览器是 Google Chrome 时,它并不总是有效。
有人遇到过这个问题吗?
I am using a TextField in Flash CS2, because I need to know the width of the actual text for positioning purposes. However from some odd reason it doesn't always work when the browser is Google Chrome.
Did anyone came across this issue?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我好像记得AS2时代有类似的事情。尝试在测量文本之前等待一帧,例如,通过将名为
redrawNextFrame
的标志设置为 true,并在onEnterFrame
回调中,如果设置了该标志,则重新绘制布局(包括文本测量)在那里,并取消设置标志。I seem to remember something like that from the AS2 times. Try waiting one frame before you measure the text, e.g. by setting a flag called
redrawNextFrame
to true, and in theonEnterFrame
callback, if the flag is set, do your layout redraw (including text measurement) there, and unset the flag.问题似乎出在特定版本的 Adobe Flash Player 上。我更新了它并解决了问题。
The problem seems to be with a particular version of the Adobe Flash Player. I updated it and fix the issue.