在fckconfig.js中找到FCKConfig.ToolbarSets 段,默认有两个工具条样式,一个是Default,一个是Basic

增加如下一段:
 1FCKConfig.ToolbarSets["Custom"] = [
 2    ['FontFormat','FontName','FontSize'],
 3    ['Bold','Italic','Underline','StrikeThrough','-','Subscript','Superscript'],
 4    ['OrderedList','UnorderedList','-','Outdent','Indent','Blockquote'],
 5    ['JustifyLeft','JustifyCenter','JustifyRight','JustifyFull'],
 6    ['Image','Flash','Table','Rule','Smiley','SpecialChar','PageBreak'],
 7    ['Link','Unlink','Anchor'],
 8    ['TextColor','BGColor'],'/'
 9    ['Cut','Copy','Paste','PasteText','PasteWord'],
10   ['Undo','Redo','-','Find','Replace','-','SelectAll','RemoveFormat'],
11   ['FitWindow','ShowBlocks','-','Source','About']        // No comma for the last row.
12;

然后再调用代码中做如下更改
1<%
2    Dim oFCKeditor
3    Set oFCKeditor = New FCKeditor
4    oFCKeditor.BasePath    = "edit/"
5    oFCKeditor.Value    = ""
6    oFCKeditor.Config("SkinPath")="/website/manage/edit/editor/skins/silver/"
7    oFCKeditor.ToolbarSet = "Custom"
8    oFCKeditor.Create "txtcontent"
9%>

如果采用 <%@ taglib prefix="FCK" uri="http://java.fckeditor.net"%> 标签方式,则做如下更改
1<FCK:editor instanceName="editorDefault" basePath="/fckeditor">
2    <jsp:attribute name="value">请填写内容</jsp:attribute>
3    <jsp:attribute name="toolbarSet">Custom</jsp:attribute>
4</FCK:editor>

其定制语法很简单
[]  表示一个工具条,
[]  中的短横线'-'表示一个垂直分割线
''  两个单引号中间加一个标识符表示一个工具栏按钮,具体的对应关系见下表。
'/' 作用类似于一个回车。使该符号后面的工具栏新起一行排列。

下面对编辑器的按钮进行详细介绍:

EditSource 显示HTML源代码
StrikeThrough 删除线
Save 保存
NewPage 新建空白页面
Superscrīpt 上标
Subscrīpt 下标
Preview 预览
JustifyLeft 左对齐
Cut 剪切
Copy 复制
Paste 粘贴
JustifyCenter 居中对齐
JustifyRight 右对齐
JustifyFull 两端对齐
PasteText 纯文本粘贴
InsertOrderedList 自动编号
PasteWord 来自Word的粘贴
InsertUnorderedList 项目符号
Print 打印
Outdent 减少缩进
SpellCheck 拼写检查
Indent 增加缩进
Find 查找
ShowTableBorders 显示表格线
Replace 替换
ShowDetails 显示明细
Undo 撤销
Form 添加Form动作
Redo 还原
Checkbox 复选框
SelectAll 全选
Radio 单选按钮
RemoveFormat 去除格式
Input 单行文本框
Link 插入/编辑 链接
Textarea 滚动文本框
RemoveLink 去除连接
Select 下拉菜单
Anchor 锚点
Button 按钮
Image 插入/编辑 图片
ImageButton 图片按钮
Table 插入/编辑 表格
Hidden 隐藏
Rule 插入水平线
Zoom 显示比例
SpecialChar 插入特殊字符
FontStyleAdv 系统字体
UniversalKey 软键盘
FontStyle 字体样式
Smiley 插入表情符号
FontFormat 字体格式
About 关于
Font 字体
Bold 粗体
FontSize 字体大小
Italic 斜体
TextColor 文字颜色
Underline 下划线
BGColor 背景色