gt;
392
E:\IISROOT\FckTest\FckTest\fckeditor\editor\plugins\remoteimagerubber\fckplugin.js
1 FCKCommands.RegisterCommand(
2 ''RemoteImageRubber'',
3 new FCKDialogCommand( ''RemoteImageRubber'',
4 FCKLang["RemoteImageRubberBtn"],
5 FCKPlugins.Items[''remoteimagerubber''].Path + ''remoteimagerubber.aspx'',
6 350,
7 200 )
8 ) ;
9 var oBtn=new FCKToolbarButton(''RemoteImageRubber'',null,FCKLang["RemoteImageRubber"],null,false,true,48);
10 FCKToolbarItems.RegisterItem(''RemoteImageRubber'',oBtn);
11 E:\IISROOT\FckTest\FckTest\fckeditor\editor\lang\zh-cn.js(其他语言同样)
1 var FCKLang =
2 {
3 //
4 RemoteImageRubberBtn: "保存远程图片"
5 };
配置一下fckconfig.js
1
FCKConfig.ToolbarSets["Default"] = [
2
[''Source'',''DocProps'',''-'',''Save'',''NewPage'',''Preview'',''-'',''Templates''],
3
[''Cut'',''Copy'',''Paste'',''PasteText'',''PasteWord'',''-'',''Print'',''SpellCheck''],
4
[''Undo'',''Redo'',''-'',''Find'',''Replace'',''-'',''SelectAll'',''RemoveFormat''],
5
[''Form'',''Checkbox'',''Radio'',''TextField'',''Textarea'',''Select'',''Button'',''ImageButton'',''HiddenField''],
6
''/'',
7
[''Bold'',''Italic'',''Underline'',''StrikeThrough'',''-'',''Subscript'',''Superscript''],
8
[''OrderedList'',''UnorderedList'',''-'',''Outdent'',''Indent''],
9
[''JustifyLeft'',''JustifyCenter'',''JustifyRight'',''JustifyFull''],
10
[''Link'',''Unlink'',''Anchor''],
11
[''Image'',''Flash'',''Table'',''Rule'',''Smiley'',''SpecialChar'',''PageBreak''],
12
''/'',
13
[''Style'',''FontFormat'',''FontName'',''FontSize''],
14
[''TextColor'',''BGColor''],
15
[''FitWindow'',''-'',''InsertCode'',''RemoteImageRubber'',''-'',''About'']
16
] ;