
// the one change in the config file
FCKConfig.ToolbarSets["Default"] = [
['Source'],
['Cut','Copy','Paste','PasteText','PasteWord','-','Print'],
['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
['FitWindow','ShowBlocks','-','About'],
'/',
['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote'],
['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
['TextColor','BGColor'],
'/',
['Style','FontFormat','FontName','FontSize']
] ;
// Object creation in php
$oFCKeditor = new FCKeditor("Description");
$oFCKeditor->BasePath = "fckeditor/";
$oFCKeditor->Value = $Description;
$oFCKeditor->Create();
Re: Graphic bug in Safari under OSX
// Object creation in php
$oFCKeditor = new FCKeditor("Description");
$oFCKeditor->BasePath = "fckeditor/";
$oFCKeditor->Value = $Description;
$oFCKeditor->Height = 250px;
$oFCKeditor->Create();
Height ;D
Width can be specified too ;]
Re: Graphic bug in Safari under OSX
*sigh* That wasn't documented in the configuration section, but you would think I might have just tried it.
Thanks
-Tom