I have installed IESpell checker or at least I thought I did.

I created a richtext.cfc in the /projects/my_project/pacakges/
formtools/ folder.  In it I have the extension of the
"farcry.core.packages.formtools.richtext" which has the tinyMCE
configJS:

<cfcomponent extends="farcry.core.packages.formtools.richtext"
name="richtext" displayname="Rich Text Editor" hint="Used to liase
with longchar type fields">

        <cffunction name="getConfig" access="public" output="false"
returntype="string" hint="This will return the configuration that will
be used by the richtext field">

                <cfset var configJS = "" />

                <cfsavecontent variable="configJS">
                        <cfoutput>
                                theme : "advanced",
                                plugins :
"table,advhr,farcrycontenttemplates,advimage,advlink,preview,zoom,searchreplace,print,contextmenu,paste,directionality,fullscreen,spellchecker",
<!--- farcryimage --->
                                theme_advanced_buttons2_add :
"separator,farcrycontenttemplates,separator,spellchecker",
                                theme_advanced_buttons3_add_before : 
"tablecontrols,separator",
                                theme_advanced_buttons3_add :
"separator,fullscreen,pasteword,pastetext",
                                theme_advanced_toolbar_location : "top",
                                theme_advanced_toolbar_align : "left",
                                theme_advanced_path_location : "bottom",
                                theme_advanced_resize_horizontal : true,
                                theme_advanced_resizing : true,
                                extended_valid_elements:
"code,colgroup,col,thead,tfoot,tbody,abbr,blockquote,cite,button,textarea[name|
class|cols|rows],script[type],img[style|class|src|border=0|alt|title|
hspace|vspace|width|height|align|onmouseover|onmouseout|name]",
                                remove_linebreaks : false,
                                relative_urls : false
                        </cfoutput>
                </cfsavecontent>

                <cfreturn configJS />
        </cffunction>

</cfcomponent>

In the farcry\core\admin\includes\lib\tinymce\jscripts\tiny_mce\plugins
\ folder I have the iespell folder and the files (editor_plugin.js,
editor_plugin_src.js, images folder and langs folder).

The spell check button appears on the body page when editing an HTML
page, (so far so good).  When I click it the UI textarea disables, the
"Spellchecking, please wait..." appears, them goes away. Even when
there are known misspellings, it displays the message box, "No
mispellings found."

What have I missed?

Thanks


--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"farcry-dev" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at 
http://groups.google.com/group/farcry-dev?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to