Hello i am currently trying to have a single spell check button for multiple instances of fck editor on the same page. The problem i am running into is that speller pages checks only text areas and textboxes, and fck editor saves everything in an iFrame within an iFrame and then in a div... not a textbox or text area,
var oEditor = FCKeditorAPI.GetInstance(elemname);
oEditor.EditingArea.TargetElement
any suggestion on how i can submit multiple fck instances to a single speller pages instance, or how i could get around this in general would be greatly appreciated
fck.instanceName = "x"
fck.value = ""
fck.create();
fck.instanceName = "y"
fck.value = ""
fck.create();
function openSpellChecker() {
var speller = new spellChecker( x"reference fck editor editable area as a text area", y...) ;
speller.openChecker();
}
some button on load would run the speller,
thanks
var oEditor = FCKeditorAPI.GetInstance(elemname);
oEditor.EditingArea.TargetElement
any suggestion on how i can submit multiple fck instances to a single speller pages instance, or how i could get around this in general would be greatly appreciated
fck.instanceName = "x"
fck.value = ""
fck.create();
fck.instanceName = "y"
fck.value = ""
fck.create();
function openSpellChecker() {
var speller = new spellChecker( x"reference fck editor editable area as a text area", y...) ;
speller.openChecker();
}
some button on load would run the speller,
thanks