WebSpellChecker (WSC)

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

WSC plugin for HTMLArea 3.0


      Please note, that HTMLArea 3.0 doesn't support some modern browsers (e.g. Opera 10.6)
Installation Guide

1. Download and install Sproxy.

2. Download the WSC plugin for HTMLArea 3.0.

3. Unpack the downloaded zip archive and copy the extracted WSC directory to the HTMLArea 3.0 plugins directory.

4. Specify the core URI of the WSC plugin core URI (see sample, line 13).

5. Load the WSC plugin (see sample, line 18).

6. When the editor loads, register the WSC plugin invoker:

editor.registerPlugin(WSC4HTMLArea3, {editor:editor, name:sMyWSCName, lang:sInitialLanguage}), where:

WSC4HTMLArea3WSC plugin invoker name.
editor {Object, mandatory} — Reference to editor instance object.
sMyWSCName {String, mandatory} — WSC instance name. The name must begin with a letter ([A-Za-z]) and may be followed by any number of letters, digits ([0-9]) and underscores ("_").
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.

See sample, lines 16-18).

Sample