基本AS 3.0查询
使用箭头浏览动作脚本 swf 的最佳方式是什么?
What is the best way to navigate through an actionscript swf using arrows?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
使用箭头浏览动作脚本 swf 的最佳方式是什么?
What is the best way to navigate through an actionscript swf using arrows?
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(1)
设置
TextInput
的tabIndex
属性。这应该允许您通过选项卡浏览表单。不建议覆盖箭头键的默认功能,因为它们用于移动 textInput 中的文本插入点
至于 Enter,您必须监听 keyUp 事件,如果检测到 Enter 键,则移动到下一个字段。
编辑
对于Flash CS5,此代码应该有效:
重要:首先将一个组件从“用户界面”组拖到舞台上并将其删除。这应该将库中的所有必需组件准备好供您使用
EDIT2
将
代码更改为:
set the
tabIndex
property of theTextInput
. That should allow you to tab through the form.It is inadvisable to override the default functionality for arrow keys because they are used to move the text insertion point within the textInput
As for enter, you'll have to listen for the keyUp event and, if you detect an enter key, move to the next field.
EDIT
For Flash CS5, this code should work:
important: first drag a component from the "User Interface" group onto the stage and delete it. This should put all the required components in the library ready for you to use
EDIT2
Change
in your code to this: