自动为 Flex 中的所有表单项显示屏幕键盘
我正在尝试使用 Flex swf(不是 Adobe Air)编写一个唯一的触摸屏信息亭应用程序。有没有办法为每个 查看状态 只要有 表单/textfield 等元素。这与 android/ios 应用程序非常相似,其中操作系统会在需要此类控件的地方弹出键盘?
I'm trying to write a only touchscreen kiosk application using flex swf(not Adobe air). Is there a way to include an on-screen keyboard(a virtual keyboard is automatically displayed) for all form items in the application for every view state wherever there is a form/textfield etc element. This is quite similar to android/ios apps where the OS pops up a keyboard wherever required for such controls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
Active den 有一个屏幕键盘,可以在此处购买,或者有教程此处,位于 actionscript.org 上。
Active den has an on-screen keyboard for purchase here, or there is a tutorial here on actionscript.org.
您需要在输入中指定
needsSoftKeyboard="true"
。 这里有一个使用软键盘的很好的示例 。You need to specify
needsSoftKeyboard="true"
on your inputs. There's a good example of the usage of the soft keyboard here.http://www.uibuzz.com/2011/ adobe/flex/github-flex-4-component-virtualkeyboard/
https://github.com/GrfxGuru/Adobe-Flex-4.5-Components
该组件将事件分派回应用程序,并带有您按下的键的标签,然后您可以将其用作需要。
http://www.uibuzz.com/2011/adobe/flex/github-flex-4-component-virtualkeyboard/
https://github.com/GrfxGuru/Adobe-Flex-4.5-Components
The component dispatches an event back to the application with the label of the key you pressed that you can then use as needed.