如何限制用户在flex容器中复制HTML容器中的内容(即<mx:html>)?</mx:html>

时间:2014-07-19 08:07:42

标签: flex air flex4 flex3

在我的空中应用程序中,我在html容器中显示了文本内容。每当有人选择此内容时,他/她都可以轻松复制内容。

我想限制我的文字副本。我的申请的任何内容都不应由任何用户复制..

我该怎么做?

3 个答案:

答案 0 :(得分:0)

一种非常简单的方法是在容器顶部使用透明的.png图像,这样任何想要复制文本的人都会复制图像!关于aktell

答案 1 :(得分:0)

您可以使用mouseChildren和mouseEnabled

<mx:HTML id="ht" width="300" height="240" mouseChildren="false" mouseEnabled="false"/>

答案 2 :(得分:0)

伙伴在内容正文中使用以下样式

.unselectable{
  -moz-user-select: none; -webkit-user-select: none;}