Flash iOS 文本字段输入自动调整大小
我希望自动设置文本字段的宽度和高度。 但如果我使用:
textField.autoSize = TextFieldAutoSize.RIGHT;
它在计算机上运行完美。但是,如果我将应用程序传输到 iPhone 并进行测试,文本字段会变成一个字符的大小,因此我输入的其余内容会滚动到文本字段区域之外。很难解释发生了什么,但看起来它没有以正确的方式设置高度和宽度。即使我使用它,
textField.scrollV = 0;
它也会不断滚动。
我已尽力解释它,在此先感谢!
谨致问候, 蒂姆
I want the width and height from the textfield to be set automatically.
But if I use:
textField.autoSize = TextFieldAutoSize.RIGHT;
It runs perfectly on the computer. But if I transfer the app to my iPhone and I test it, the textfield turns in the size of one character so the rest I'm typing scrolls out of the textfield area. It's pretty hard to explain what happens, but it just looks like it doesn't set the height and width the right way. And even if I use the
textField.scrollV = 0;
it keeps scrolling.
I've tried to explain it as much as I can, thanks in advanced!
With kind regards,
Tim
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
“使用设备字体”进行抗锯齿。
"Use device fonts" for Anti-alias.