I use the fckEditor in multiple sections of our site and in some I want to use FullPage mode and in other I do not.
My question is, how can I control the FCKConfig.FullPage settings per instance of the
editor. Currently, I can set it in the fckconfig.js, but can not apply it for different
instances of the editor.
My question is, how can I control the FCKConfig.FullPage settings per instance of the
editor. Currently, I can set it in the fckconfig.js, but can not apply it for different
instances of the editor.

RE: FullPage mode settings (turning on and of
RE: FullPage mode settings (turning on and of
RE: FullPage mode settings (turning on and of
RE: FullPage mode settings (turning on and of
This is specific to the CF version but I imagine the trick is easily adapted.
In the <cfscript> area where you create the object and set various params like height/width, the instance name, add in a bit calling 'Config['FullPath']' and set it as needed. For example:
<cfscript>
fckEditor = createObject("component", "(path to the editor)");
fckEditor.instanceName = '(form field name)';
fckEditor.value = '(value of content)';
fckEditor.basePath = '(path to editor base path)';
fckEditor.width = '600';
fckEditor.height = '600';
fckEditor.Config['FullPage'] = 'true' ;
fckEditor.create(); // create the editor.
</cfscript>
I have FullPath set to false in my fckconfig.js file - in this case, I flip it to true.