็Can I make a text that isn't copiable? without converting into jpg. file

I want to put a text on my website that is not copiable but still can be managed to do some workflow, such as clickable for any workflow. Is it possible?

You could place a transparent shape over it and have workflows be triggered when the shape is clicked. I would assume the shape element would prevent the text from being selected for copying.

2 Likes

Since anyone can view source on any page, it’s impossible, as far as I know, to inhibit text copying.

1 Like

replace the slightly safer text and place it in a html block. to be clear its not where you want to leave your diary but you would be supersized when you find trying to grab it even in developer console in your browser that you just cant quiet get the tricky little bugger. You could also pick up on the mouse’s X, Y and when the sneaky theif gets close hide the text as-well. more about making them work for it i think/ My CSS Tools Pro will be out in the coming days it has this feature and also the X, Y live mouse tracking so you can couple it with MoveIT! and have your elements chase them away too! lol

<style>
.PlugBubble {
 -webkit-touch-callout: none; /* iOS Safari */
 -webkit-user-select: none; /* Safari */
  -khtml-user-select: none; /* Konqueror HTML */
   -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
     user-select: none; /* Non-prefixed version, currently  supported by Chrome and Opera */
    
}
</style>
<p class="PlugBubble">
Slightly safer text.
</p>
1 Like

This topic was automatically closed after 70 days. New replies are no longer allowed.