Es cierto. Esto sí funciona:
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;
alert(myf2.body.innerHTML);
Podés probarlo así:
Vas a esta página:
http://www.fckeditor.net/demo
Y una vez en ella, reemplazá el contenido de la barra de direcciones por esto de abajo y hacé click en el botón ir:
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;alert(myf2.body.innerHTML);