With the former version of FCKeditor, i used the following javascript code to dynamically add text to the editor:
window.frames[0].objContent.DOM.selection.clear();
window.frames[0].objContent.DOM.selection.createRange().pasteHTML("text");
unfortunately, this isn't working anymore with 2.0, how do I have to alter the code to work with 2.0?
window.frames[0].objContent.DOM.selection.clear();
window.frames[0].objContent.DOM.selection.createRange().pasteHTML("text");
unfortunately, this isn't working anymore with 2.0, how do I have to alter the code to work with 2.0?

RE: Access FCKeditor via Javascript to add te
http://www.fckeditor.net/demo/default.html
RE: Access FCKeditor via Javascript to add te
editor_frame = document.getElementById(editorname+'___Frame');
editor_source = editor_frame.contentWindow.document.getElementById('eEditorArea');
editor_source.contentWindow.document.body.innerHTML += 'some text';