I needed a way to prevent that users to do copy/paste in the editor
I succedded doing that in the IE by adding in the file fckeditorcode_ie.js on line 36 :
But this code doesn't work on Firefox.
Can you help on this?
I succedded doing that in the IE by adding in the file fckeditorcode_ie.js on line 36 :
<body onkeydown=" var code = (document.all) ? event.keyCode:e.which; var ctrl = (document.all) ? event.ctrlKey:e.modifiers & Event.CONTROL_MASK; if (document.all) { if (ctrl && code==86) { window.event.returnValue = false; } else if (ctrl && code==67) { window.event.returnValue = false; } } else { if (ctrl==2) { return false; } } ">But this code doesn't work on Firefox.
Can you help on this?

Re: Prevent users to use ctrl+c or ctrl+v in editor