标签:
1,打开plugins\media下面的media.js,打开,找到下面的代码:
var html = K.mediaImg(self.themesPath + ‘common/blank.gif‘, { src : url, type : K.mediaType(url), width : width, height : height, autostart : autostartBox[0].checked ? ‘true‘ : ‘false‘, loop : ‘true‘ }); 修改为: if (url.slice(-4).toUpperCase() == ‘.FLV‘) { var html = K.mediaImg(self.themesPath + ‘common/blank.gif‘, { src : ‘../KindEditor/files/flvplayer.swf‘, type : K.mediaType(url), flashvars : ‘file=‘+ url +‘&autostart=‘+ (autostartBox[0].checked ? ‘true‘ : ‘false‘) +‘‘, width : width, height : height, quality : ‘high‘, allowfullscreen : ‘true‘, loop : ‘true‘ }); }else{ var html = K.mediaImg(self.themesPath + ‘common/blank.gif‘, { src : url, type : K.mediaType(url), width : width, height : height, autostart : autostartBox[0].checked ? ‘true‘ : ‘false‘, loop : ‘true‘ }); }
然后在KindEditor下面建一个files文件夹,把flvplayer.swf拷贝进去,就OK
注意,要设置编辑器为 filterMode : false
标签:
原文地址:http://www.cnblogs.com/mfc-itblog/p/5165044.html