Flex 4 标签和选择
我正在 Spark 标签中显示数据。现在我发现用户无法选择和复制显示的文本。文档没有显示需要做什么(mx.Label 允许这样做,但 Spark 标签不允许)。
那么解决办法是什么呢?如何允许用户选择和复制屏幕上显示的数据?
I am displaying data in spark Labels. Now I find that the user cannot select and copy the displayed text. The docs don't show what needs to be done (mx.Label allowed this but a spark label does not).
So what's the solution? How can I allow users to select and copy data displayed on my screen?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
仅:
允许在 Flex 4 中选择文本。
请参阅此处:http://help .adobe.com/en_US/flex/using/WS02f7d8d4857b1677-165a04e1126951a2d98-7fe4.html
Only :
allow text selection in Flex 4.
See here : http://help.adobe.com/en_US/flex/using/WS02f7d8d4857b1677-165a04e1126951a2d98-7fe4.html
请改用
。它看起来就像一个标签,但允许您从中复制。
Use
<mx:Text>
instead.It looks just like a Label but allows you to copy from it.