如何将字符串从 AIR 中的虚拟键盘传递到嵌入的 HTML 页面
我是 Flex/Air 的新手。我正在开发一个 AIR 网络浏览器,我想使用虚拟键盘在 HTML 页面中编写内容。
我将此组件集成为键盘: http://www .uibuzz.com/2011/adobe/flex/github-flex-4-component-virtualkeyboard/ 当我尝试在文本区域中写入时效果很好,但我不知道如何在 html 中写入 页。
示例: 要在 textarea 中写入,我只需调用此:
textarea.text = event.keyLabel;
我如何将 string: 传递
event.keyLabel
给 an:
<mx:HTML id="HTML" .../>
?
我真的希望一切都清楚,提前感谢您的帮助,对于我的英语不好,我深表歉意。
极品
i'm a newbie in Flex/Air. I'm developing an AIR web browser and i want to use a virtual keyboard to write in the HTML pages.
I integrated this component as keyboard: http://www.uibuzz.com/2011/adobe/flex/github-flex-4-component-virtualkeyboard/ it works well when i try to write in a text area, but i don't know how to write in the html page.
EXAMPLE:
To write in textarea, i just have to call this:
textarea.text = event.keyLabel;
how could i pass the string:
event.keyLabel
to an:
<mx:HTML id="HTML" .../>
?
I really hope that is all clear, thank u in advance for your help, and i apologize for my bad english.
Fab
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用
htmlText
属性You can use the
htmlText
property