Using it on a linux server. Made change (1) [ckconfig.js choose SpellerPages] Made change (2) [spellchecker.php set path for aspell] spellcheck button still not operative in editor.
I use FCK with the ASpell-version with colfusion mx. after a few modifications it works fine on ie and firefox. If anyone is interested in the modifications, send me a email. Jenzener
<cfcontent type="text/html"><html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="stylesheet" type="text/css" href="../spellerStyle.css" />
<script language="javascript" src="../wordWindow.js"></script>
<script language="javascript">
var suggs = new Array();
var words = new Array();
var textinputs = new Array();
var error;
#texts.textinputs##crlf#
#texts.words#
#texts.abort#
var wordWindowObj = new wordWindow();
wordWindowObj.originalSpellings = words;
wordWindowObj.suggestions = suggs;
wordWindowObj.textInputs = textinputs;
function init_spell() {
// check if any error occured during server-side processing
if( error ) {
alert( error );
} else {
// call the init_spell() function in the parent frameset
if (parent.frames.length) {
parent.init_spell( wordWindowObj );
} else {
alert('This page was loaded outside of a frameset. It might not display properly');
}
}
}
</script>
</head>
<body onLoad="init_spell();">
<script type="text/javascript">
wordWindowObj.writeBody();
</script>
</body>
</html></cfoutput>
RE: How to use Spell check
RE: How to use Spell check
RE: How to use Spell check
Made change (1) [ckconfig.js choose SpellerPages]
Made change (2) [spellchecker.php set path for aspell]
spellcheck button still not operative in editor.
Any other suggestions?
RE: How to use Spell check
If anyone is interested in the modifications, send me a email.
Jenzener
RE: How to use Spell check
RE: How to use Spell check
<cfcontent type="text/html"><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"> <link rel="stylesheet" type="text/css" href="../spellerStyle.css" /> <script language="javascript" src="../wordWindow.js"></script> <script language="javascript"> var suggs = new Array(); var words = new Array(); var textinputs = new Array(); var error; #texts.textinputs##crlf# #texts.words# #texts.abort# var wordWindowObj = new wordWindow(); wordWindowObj.originalSpellings = words; wordWindowObj.suggestions = suggs; wordWindowObj.textInputs = textinputs; function init_spell() { // check if any error occured during server-side processing if( error ) { alert( error ); } else { // call the init_spell() function in the parent frameset if (parent.frames.length) { parent.init_spell( wordWindowObj ); } else { alert('This page was loaded outside of a frameset. It might not display properly'); } } } </script> </head> <body onLoad="init_spell();"> <script type="text/javascript"> wordWindowObj.writeBody(); </script> </body> </html></cfoutput>