Hey,
I am working on a content management system for newsletters and am using FCKeditor for the large textareas.
For this I am having multiple FCKeditor instances, but that case is resolved already.
Each large textarea on the page is replaced with a FCKeditor instance with the same dimensions.
I have removed the normal toolbar, because I just want to see the editor area.
I still want the user to be able to execute some button functions, but then on an external toolbar, which I'll position on the left top side.
I have been working for hours on this matter, so that's why I've turned to the forum now.
I can't figure out which function to call to actually execute a button outside the FCKeditor area.
ps.
The only commands I want to work are the NamedCommands (ie. Bold, Italic etc).
Your help would be much appreciated.
-Stef Henderson
I am working on a content management system for newsletters and am using FCKeditor for the large textareas.
For this I am having multiple FCKeditor instances, but that case is resolved already.
Each large textarea on the page is replaced with a FCKeditor instance with the same dimensions.
I have removed the normal toolbar, because I just want to see the editor area.
I still want the user to be able to execute some button functions, but then on an external toolbar, which I'll position on the left top side.
I have been working for hours on this matter, so that's why I've turned to the forum now.
I can't figure out which function to call to actually execute a button outside the FCKeditor area.
ps.
The only commands I want to work are the NamedCommands (ie. Bold, Italic etc).
Your help would be much appreciated.
-Stef Henderson

RE: External toolbar
examine fckcommands.js and search for
FCKCommands.GetCommand function. In its switch statement you'll find all the editor's commands and ways they need to be initialized. Mind the difference between formatting actions dealt by browsers internally (those are initialized via FCKNamedCommand( commandsName )) and the ones that are editor's constructions (like FCKTableCommand)
RE: External toolbar
RE: External toolbar
My question is thus how to call the button functions outside the FCKeditor area.
Easy way to seperate toolbar