function getEditorContents(){
var oEditor = FCKeditorAPI .GetInstance( "content");
alert(oEditor.GetXHTML(true));
}
// 指定されたコードをエディターに挿入します
function insertHTMLToEditor(codeStr){
var oEditor = FCKeditorAPI.GetInstance("コンテンツ");
if (oEditor.EditMode==FCK_EDITMODE_WYSIWYG){
}else{
}
}
// エディター内のコンテンツの単語数をカウントします
function getLength(){
var oEditor = FCKeditorAPI.GetInstance("content");
var oDOM = oEditor .EditorDocument;
var iLength ;
if(document.all){
iLength = oDOM.body.innerText.length;
var r = oDOM.createRange();
r.selectNodeContents(oDOM .body);
iLength = r.toString().length;
}
alter(iLength)
}
// 指定されたアクションを実行します。
function ExecuteCommand(commandName){
var oEditor = FCKeditorAPI.GetInstance("content");
oEditor.Commands.GetCommand(commandName).Execute();
//Setエディターのコンテンツ
function SetContents (codeStr){
var oEditor = FCKeditorAPI.GetInstance("content");
oEditor.SetHTML(codeStr);