Get your own copy
Don't hesitate! Just download and test it all by yourself for free!
(Requires: 3.0)
This option enables you to add events to editor instances before they get rendered.
tinyMCE.init({
...
setup : function(ed) {
ed.onClick.add(function(ed, evt) {
ed.selection.select(evt.target);
});
}
});
Search documentation.