[DotNetNuke 4.5.4/FCKeditor 2.4.1]
Thank you. This was exactly the level of kick-start I needed to make my own toolbar. Actually, the FCKeditor 'Basic' toolbar was everything I was looking for, except it was missing Undo/Redo. Here's exactly what I did to Add Undo and Redo to the Basic toolbar:
Make a backup/copy of the file: ...\Providers\HtmlEditorProviders\Fck\Custom\fckconfig.js
Edit fckconfig.js
Find the 'Basic' toolbar definition:
FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','About']
] ;
Insert the Undo and Redo buttons:
FCKConfig.ToolbarSets["Basic"] = [
['Bold','Italic','-','OrderedList','UnorderedList','-','Link','Unlink','-','Undo','Redo','-','About']
] ;
Save fckconfig.js and exit.
Make a backup/copy of .../web.config
Edit web.config
Find the FCKeditor section that includes:
AvailableToolBarSets="DNNDefault,Default,NoGallery,Basic"
DefaultToolbarSet="DNNDefault"
DefaultImageGallerySkin="Default"
DefaultFlashGallerySkin="Default"
DefaultLinksGallerySkin="Default"
FCKDebugMode="false"
UseFCKSource="false"
OptionsOpenMode="ShowModalDialog"
CustomOptionsDialog="Admin" />
Change: DefaultToolbarSet="Basic"
Save web.config and exit.