灵活键盘插入模式改写或插入
在我的 Flex 应用程序中,我想以编程方式了解插入键的编辑模式。 在应用程序的状态栏中应该有一个指示符,指示当前工作的模式。 由于插入键是切换键,我如何知道它的模式?
提前致谢。
In my flex application, I would like to know the edit mode of insert key programmatically. In the status bar of the application there should be an indicator for the mode in which currently working. As the insert key is toggle key, how can i know the mode of it?
Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用 KeyboardEvent.KEY_DOWN 和 KeyboardEvent.KEY_UP 记录按下的按键。 您必须在申请完成后将它们添加到舞台上,否则它们将不起作用。
然后有一个函数:
然后是事件函数:
或者如果您将它用作切换:
我希望这会有所帮助!
You can record the keys being pressed with a KeyboardEvent.KEY_DOWN and KeyboardEvent.KEY_UP. You have to add these to the stage on application complete or they will not work.
And then have a function:
And then the event functions:
Or if you're using it as a toggle:
I hope this helps!