WebSpellChecker (WSC)

WSC operates in a separate browser window so your work is not obstructed. Corrected text is automatically returned to the form.

Multiple WYSIWYGs Support. FCKEditor 2.6.4+

Installation Guide

1. Download and install Sproxy.

2. Specify WSC URI (See sample, line 7).

3. Define the WSC invoker:

doSpell({ctrl:sMyEditor, lang:sInitialLanguage, onClose:onCloseHandler, onCancel:onCancelHandler, onFinish:onFinishHandler}), where:

sMyEditor {String, mandatory} — Iframe instance identifier.
sInitialLanguage {String, mandatory} — Initial spell check language name. Now supported: en_US, en_GB, pt_BR, en_CA, fr_CA, fr_FR, de_DE, it_IT, el_GR, es_ES, da_DK, nl_NL, nb_NO, pt_PT, sv_SE, fi_FI.
onCloseHandler {Function, optional} — Callback function reference.
onCancelHandler {Function, optional} — Callback function reference.
onFinishHandler {Function, optional} — Callback function reference.

Before opening WSC, copy the editor content to the hidden control element. See sample, lines 14-24.

4. Copy the content from the hidden control to WYSIWYG editor after you've finished checking the content. See sample, lines 28-29

5. Invoke WSC when you want to check the spelling. See sample, lines 42, 53.

Sample