I'm trying to write a plug-in for CKEditor 3.x that can react to when the text of the editor is scrolled. Does CKEditor throw an event when the body is scrolled? If so how can I add a listener function for it.
Any help is greatly appreciated.
Thanks!
Jared
Any help is greatly appreciated.
Thanks!
Jared

Re: Listening for a Scroll Event
viewtopic.php?f=11&t=18885
Re: Listening for a Scroll Event
In case you haven't found the answer yet this would likely be what you're after:
editor.on('contentDom', myContentDomHandler); function myContentDomHandler() { m_editor.document.getBody().on('scroll', DYNDOCToggleCSS.onTextScroll); }Thanks,
Jay