En esta demo:
http://www.fckeditor.net/demo
Funciona este bookmarklet:
Código PHP:
javascript:var myf = document.getElementById("FCKeditor1___Frame");myf = myf.contentWindow.document || myf.contentDocument;var myf2=myf.getElementById('xEditingArea').getElementsByTagName('iframe')[0].contentWindow.document || myf.getElementById('xEditingArea').getElementsByTagName('iframe')[0].contentDocument;myf2.body.innerHTML='hola';void(0);
De manera que seguramente te funcionará algo como esto:
Código PHP:
var myf = document.getElementById("FCKeditor1___Frame");
myf = myf.contentWindow.document || myf.contentDocument;
var myf2=myf.getElementById('xEditingArea').getElementsByTagName('iframe')[0].contentWindow.document || myf.getElementById('xEditingArea').getElementsByTagName('iframe')[0].contentDocument;
myf2.body.innerHTML='hola';