AS3 TextField.textWidth 忽略末尾的空格
我正在尝试计算 textWidth,但它似乎忽略了末尾的空格。文字
“你好” “Hello”
返回相同的文本宽度。带有“”的字符串返回0。如何计算带有空格的宽度?
I'm trying to calculate the textWidth, but it seems to ignore the white spaces at the end. The text
"Hello"
"Hello "
returns the same text width. A string with " " returns 0. How do I calculate the width with the space?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你总是可以获得字符串的长度。
然后将其乘以字符的宽度。
例如:
You could always get the length of the string.
And then multiply that by how wide your characters are.
For example: