如何在 Flex 4 textinput 中显示复制和粘贴菜单项?
在我的 Flex 4 项目中,我使用了一些 Spark TextInput 组件。默认情况下,右键菜单中不显示复制和粘贴。用户需要复制一些文本并粘贴到其中。我们怎样才能实现这一点?
In my flex 4 project I am using some Spark TextInput components. It doesn't show copy and paste in the right click menu by default. The user needs to copy some text and paste into it. How can we enable this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我发现这些信息很有用:
http://forums.adobe.com/message/3612279
基本上,请确保您是否在面板或标题窗口中使用 TextInput 组件,请确保设置 mouseEnabled="true"。 PanelSkin 和 TitleWindowSkin 都有 mouseEnabled="false"。
我发现只需在 TitleWindow 上设置 mouseEnabled="true" 即可解决问题。
I found this information useful:
http://forums.adobe.com/message/3612279
Basically, make sure that if you are using TextInput components inside a Panel or TitleWindow, make sure you set mouseEnabled="true". Both PanelSkin and TitleWindowSkin have mouseEnabled="false".
I found that just setting mouseEnabled="true" on my TitleWindow solved the problem.
我想,这就是我们问题的答案。
http:// blog.flexexamples.com/2008/01/30/copying-text-to-the-operating-system-clipboard-in-flex/
I think, thats the answer of aour question.
http://blog.flexexamples.com/2008/01/30/copying-text-to-the-operating-system-clipboard-in-flex/
如果您要创建一个新的 ContextMenu 来向其中添加自定义项,并且没有看到复制粘贴选项,请确保 ContextMenu 对象上的 ClipboardMenu=true。
If you are creating a new ContextMenu to add custom items to it and your not seeing the copy paste options, make sure that clipboardMenu=true on your ContextMenu object.