RapidSpell Web Java can add spell checking to just about all editors - the only task is to properly write the RSCustomInterface object needed to interface with the editor. 1. In RapidSpellWebLauncher set the properties; -textComponentInterface to "Custom" -textComponentName to the ID of the editor control. -ignoreXML to "true" -rapidSpellWebPage as usual to the URL of the page holding RapidSpellWeb 2. Add this Javascript block to the page using the editor <script type='text/javascript'> function RSCustomInterface(tbElementName){ this.tbName = tbElementName;this.getText = getText;this.setText = setText; function getText(){ return FCKeditorAPI.GetInstance( this.tbName ).GetHTML(); } function setText(text){ FCKeditorAPI.GetInstance( this.tbName ).SetHTML(text); } } </script> |