Flash Builder 4.5.1 键盘问题

发布于 2024-12-25 10:42:12 字数 251 浏览 2 评论 0原文

只是一个简单的问题 - 大多数平板电脑和设备都有触摸屏键盘,允许用户输入文本。我们都见过他们一百万次。

我如何

  • a) 将键盘设置为不同的类型(例如数字)
  • b) 如何将 iOS 中的“完成”消息更改为其他内容 ENTER 键(我注意到很多应用程序都这样做)
  • c) 如何在 Flash builder 4.5.1 中捕获“ondone”事件或“onsubmit”事件

提前致谢!

just a quick question - most tablets and devices have a touchscreen keyboard that will allow the user to enter text. we've all seen them a million times.

How do I

  • a) set the keyboard to a different type (say numeric)
  • b) how do I change the "done" message to something else say in iOS when it's the
    ENTER key (i've noticed many apps that do that)
  • c) how do I capture the "ondone" event or "onsubmit" event in Flash builder 4.5.1

thanks in advance!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫南 2025-01-01 10:42:12

看起来这是在 Flashbuilder 4.6 中通过 softKeyboardType 命令实现的:

<s:VGroup verticalAlign="middle">    
    <s:Label text="Soft Keyboard=Number"/>    
    <s:TextInput softKeyboardType="number" width="180"/>
</s:VGroup>

这里有一个关于它的好文章的链接:
http://devgirl.org/2011/11/29/flex-mobile-development-flex-4-6-cool-new-soft-keyboard-features-sample-w-source/

It looks like this is implemented in Flashbuilder 4.6 through the softKeyboardType command:

<s:VGroup verticalAlign="middle">    
    <s:Label text="Soft Keyboard=Number"/>    
    <s:TextInput softKeyboardType="number" width="180"/>
</s:VGroup>

Here's a link to good article on it:
http://devgirl.org/2011/11/29/flex-mobile-development-flex-4-6-cool-new-soft-keyboard-features-sample-w-source/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文