FCKEditor was named by Frederico C Knabben (a Dutchman I believe) who wrote it. Over time a lot of English speakers suggested he find another name for his product, because of the obvious issue when it's used in English. More than once I've had a client call me and ask why I'm putting obscene messages on the web site. With this latest version he's listened to the English-speakers and dropped the F from the name.
The version of FCKEditor shipped with CF8 was not as cross-browser compatible as more recent versions. When FCKEditor is called by a browser it doesnt know about it renders a simple textarea instead. The solution is to upgrade the version of FCKEditor in your CFIDE folder by downloading a newer version of FCKEditor from fckeditor.net and installing it into /cfforms/scripts/ajax/FCKEditor or learning how to use the awesome configuration power of FCKEditor and put your own version in your site, then configure it how you want. There are a lot of resources for configuring FCKEditor in the web site at FCKEditor.net - including some documentation about how to integrate it into coldfusion forms. Cheers Mike Kear Windsor, NSW, Australia Adobe Certified Advanced ColdFusion Developer AFP Webworks http://afpwebworks.com ColdFusion, PHP, ASP, ASP.NET hosting from AUD$15/month On Thu, Nov 12, 2009 at 5:47 AM, Tony Bentley <[email protected]> wrote: > > I use it all of the time. It can be used in a number of ways. I like the ease > of clicking something that replaces the content within an element (textarea > or div) and loads after the page loads. I have an application that uses a > custom tag to instantiate it: > > <cfparam name="attributes.html" default=""> > <cfparam name="attributes.height" default="200"> > <cfif thisTag.ExecutionMode is 'start'> > <cfscript> > fckEditor = createObject("component", "fckeditor.fckeditor"); > fckEditor.instanceName="myEditor"; > fckEditor.basePath="/fckeditor/"; > fckEditor.value=attributes.html; > fckEditor.width="100%"; > fckEditor.height=attributes.height; > fckEditor.create(); > </cfscript> > > </cfif> > > <cfif thisTag.ExecutionMode is 'end'></cfif> > > > Then just run it on your page like this: > > <cfimport > prefix="tag" > taglib="tags/"> > <tag:fck html="#myhtml#" height="500"/> > > You can add as many attributes as you want but this seems to be easier than > doing any changes to ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Want to reach the ColdFusion community with something they want? Let them know on the House of Fusion mailing lists Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:328287 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

