FCK Editor Spell Check Plugin

The Plugin :

FCKEditor is probably the worlds most popular, internet based HTML Editor. Due to popular demand - ASPSpellCheck now offers a full FCKEditor Plugin.

The plugin provides spellchecking from the FCK Editor toolbar - and does not require any ActiveX installation or complex PERL setups. (such as iespell or spellerpages)

Tutorial:

  1. Download and Install ASPSpellCheck to your website by unzipping it and copying the ASPSPellCheck directory to the root of your site.

  2. Download the plugin, unzip it and copy the plugins/ASPSpellCheck folder to the /FCKEditor/editor/plugins/ASPSpellCheck directory in your website.

  3. In /FCKEditor/fckconfig.js register the plugin using this code (on or below line 52):
    FCKConfig.Plugins.Add( 'ASPSpellCheck' )

  4. Still in /FCKEditor/fckconfig.js, edit your FCKToolbarSets (around line 99). Remove any SpellCheck button and add a ASPSpellCheck button.

    e.g:


    FCKConfig.ToolbarSets["Basic"] = [
    ['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','ASPSpellCheck']
    ] ;

  5. Copy this code in to the header of your web page, & customize as required.:

    <script type="text/javascript">

    <!--#include virtual= "/ASPSpellCheck/ASPSpellInclude.inc"-->

    <%
    dim myLink, strSpellURL
    set myLink = new AspSpellLink
    myLink.fields="__FCKEDITOR__"
    strSpellURL = myLink.url
    set myLink=nothing
    %>

    FCKAspSpellCheck = {}; FCKAspSpellCheck.URI = '<%=strSpellURL%>' ;

    </script>

  6. Add FCKEditor to your page as normal.

 

< More Demonstrations of ASP Spell Checking Applications