1.首先添加js文件
打开post_editor.htm

<div class="maxbtn">
<a id="{$editorid}_cmd_paste" title="{lang e_paste}">{lang e_paste}</a>
</div>下面添加
<div class="maxbtn">
<a id="{$editorid}_cmd_copy" title="{lang e_paste}" onClick=copy('message') >{lang e_copy}</a>
</div>
<div class="maxbtn">
<a id="{$editorid}_cmd_cut" title="{lang e_paste}" onClick=cut('message') >{lang e_cut}</a>
</div>在该文件最下面添加
<script type="text/javascript"> function copy(ob){
var obj=findObj(ob); if (obj) { 
obj.select();js=obj.createTextRange();js.execCommand("Copy");}
}
function cut(ob){
var obj=findObj(ob); if (obj) { 
obj.select();js=obj.createTextRange();js.execCommand("Cut");}
}
function findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}</script>这步有待高手优化改进2.打开templates.lang.php
在'e_paste' => '粘贴'下面添加 
'e_copy' => '复制',
'e_cut' => '剪切',3.打开css.script.htm
在#e_cmd_paste { background-position: 4px -315px; }
下面添加
#e_cmd_copy { background-position: 4px -315px; }
#e_cmd_cut { background-position: 4px -315px; }如果要用自己的图片,可以在images\common\bigeditor.gif下添加新图标 再修改cssOK