I'm using the CreateHtml method for integrating the FCKeditor.
When the FCKeditor have been loaded, I want the cursor to automatically be placed in the edit area. How do I achieve that?
var fck = new FCKeditor('myEditor');
document.getElementById('myDiv').innerHTML = fck.CreateHtml();When the FCKeditor have been loaded, I want the cursor to automatically be placed in the edit area. How do I achieve that?

Re: Place cursor in editor
Re: Place cursor in editor
function FCKeditor_OnComplete( editorInstance ) { editorInstance.Focus(); }Note: It doesn't work in Adobe AIR.