I got it to work by doing this. :) YE! Thank you for getting me on the right track!
<cfscript> fckEditor = createObject( "component", "/CFIDE/scripts/ajax/FCKEditor/fckeditor" ); fckEditor.Config["CustomConfigurationsPath"] = "#session.root#/js/FCKEditor_configCMS.js"; fckEditor.instanceName = "introText"; fckEditor.value = ""; fckEditor.basePath = "/CFIDE/scripts/ajax/FCKEditor/"; fckEditor.width = 460; fckEditor.height = 245; fckEditor.ToolbarSet = "CMS"; fckEditor.create(); // create the editor. </cfscript> ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| 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:329924 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

