I'm working on a plugin which incorporates an image gallery with TinyMCE. Roughly it works like whenever I press on of the images (which are situated in a div just below my editor) the id of the clicked image will get picked up with ajax and sent to a function that injects this code into TinyMCE:
<img src="<?php echo $imgsrc[0]; ?>" width="<?php echo $imgsrc[1]; ?>">
It all works like it should, however I want to be able to track when this happens in the editor. I use onEvent like so:
ed.onEvent.add(function(ed, e) {
console.debug('Editor event occured: ' + e.target.nodeName);
});
It won't pick up any event at all, is there someway to make TinyMCE aware of what just happened?
Thanks.