function checkspell() { try { var tmpis = new ActiveXObject("ieSpell.ieSpellExtension"); tmpis.CheckAllLinkedDocuments(document); } catch(exception) { if(exception.number==-2146827859) { if (confirm("ieSpell not detected. Click Ok to go to download page.")) window.open("http://www.iespell.com/download.php","DownLoad"); } else alert("Error Loading ieSpell: Exception " + exception.number); } }
Did what you suggested for the spell check and works GREAT! One prob though: the spell check icon is always highlighted and I would like to turn this off. How do I go about it?
RE: Table borders & Spelling...
To turn on the border I just added: showTableBorders();
to the function: initEditor
in: fck_editor.js
As for the spelling, I found a good solution by using IEspell.
http://www.iespell.com
Here is some javascript I found for the button:
function checkspell() {
try {
var tmpis = new ActiveXObject("ieSpell.ieSpellExtension");
tmpis.CheckAllLinkedDocuments(document);
}
catch(exception) {
if(exception.number==-2146827859) {
if (confirm("ieSpell not detected. Click Ok to go to download page."))
window.open("http://www.iespell.com/download.php","DownLoad");
}
else
alert("Error Loading ieSpell: Exception " + exception.number);
}
}
RE: Table borders & Spelling...
Thanks again!