Hello,
I'd like to have access on the OnMouseMove-Event all over my website. The FCKEditor works in a Frame, so the Event is not fired if the mouse is in this frame. Is there a way to get the OnMouseMove-Event within the Editor?
Thanks, Markus
I'd like to have access on the OnMouseMove-Event all over my website. The FCKEditor works in a Frame, so the Event is not fired if the mouse is in this frame. Is there a way to get the OnMouseMove-Event within the Editor?
Thanks, Markus

Re: OnMouseMove in FCKEditor
editorInstance.EditorWindow.addEventListener('mousemove',function(e){ MyFunction(e); },false);This works fine over the editor-area, but not over the toolbar. Any ideas?