如何知道 Flash AS3 中的文本字段何时被编辑?
文本字段在用户编辑或滚动时是否发送事件?
当焦点位于文本字段时按下按键会怎样?你明白吗?
Does the textfield send events when its edited, or scrolled by the user?
What about key presses when focus is on the textfield? do you get those?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
文本字段发送许多有用的事件:
您可以轻松监听文本字段聚焦时发生的键盘事件。
只需将 KEY_DOWN 事件直接添加到文本字段,然后执行您想要的操作。
Textfields send many useful events:
You can easily listen for keyboard events occurring when the textfield is focused.
Just add a KEY_DOWN event directly to the textfield, and then do whatever you want.