To disable copy from clipboard – aka the paste in ‘copy/cut and paste’ – in TinyMCE, use the following fragment in ‘tinyMCE.init’
setup : function(ed) { ed.onPaste.add( function(ed, e, o) {
return tinymce.dom.Event.cancel(e);
}
) },
Interestingly enough, if you have ‘Paste from Word’ enabled, that paste process still works.
TinyMCE and Grammar Checking – quick scan.
Whitesmoke offers a TinyMCE plugin for Grammar, Templating and spelling. Uses Whitesmoke backend servers. See Whitesmoke and TinyMCE
and
git clone git://github.com/kete/tiny_mce.git tiny_mce_plugin
If you need to embed an Ajax call in a TinyMCE plugin, you will need to force TinyMCE to sericalize and save everything back into the original textarea.
Using TinyMCE with an AJAX form submit provides a useful discussion.