增加如下一D:
1
FCKConfig.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
] ;
然后再调用代码中做如下更?br />
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"%> 标签方式Q则做如下更?br />
1
<FCK:editor instanceName="editorDefault" basePath="/fckeditor">
2
<jsp:attribute name="value">请填写内?/span></jsp:attribute>
3
<jsp:attribute name="toolbarSet">Custom</jsp:attribute>
4
</FCK:editor>
其定制语法很?br />
[] 表示一个工hQ?br />
[] 中的短横U?-'表示一个垂直分割线
'' 两个单引号中间加一个标识符表示一个工h按钮Q具体的对应关系见下表?br />
'/' 作用cM于一个回车。该符号后面的工具栏新起一行排列?br />
下面对编辑器的按钮进行详l介l:
EditSource 昄HTML源代?
StrikeThrough 删除U?
Save 保存
NewPage 新徏I白面
Superscrīpt 上标
Subscrīpt 下标
Preview 预览
JustifyLeft 左对?
Cut 剪切
Copy 复制
Paste _脓
JustifyCenter 居中寚w
JustifyRight 叛_?
JustifyFull 两端寚w
PasteText U文本粘?
InsertOrderedList 自动~号
PasteWord 来自Word的粘?
InsertUnorderedList 目W号
Print 打印
Outdent 减少~进
SpellCheck 拼写?
Indent 增加~进
Find 查找
ShowTableBorders 昄表格U?
Replace 替换
ShowDetails 昄明细
Undo 撤销
Form dForm动作
Redo q原
Checkbox 复选框
SelectAll 全?
Radio 单选按?
RemoveFormat 去除格式
Input 单行文本?
Link 插入/~辑 链接
Textarea 滚动文本?
RemoveLink 去除q接
Select 下拉菜单
Anchor 锚点
Button 按钮
Image 插入/~辑 囄
ImageButton 囄按钮
Table 插入/~辑 表格
Hidden 隐藏
Rule 插入水^U?
Zoom 昄比例
SpecialChar 插入Ҏ字符
FontStyleAdv pȝ字体
UniversalKey 软键?
FontStyle 字体样式
Smiley 插入表情W号
FontFormat 字体格式
About 关于
Font 字体
Bold _体
FontSize 字体大小
Italic 斜体
TextColor 文字颜色
Underline 下划U?
BGColor 背景?

]]>