安装方法:
1、下载本文附件,解压到SAX2.0的include/editor/editor/plugins/目录。2、编辑include\editor\fckconfig.js查找
1 | FCKConfig.PluginsPath = FCKConfig.BasePath + 'plugins/' ; |
1 | FCKConfig.Plugins.Add( 'Insertplayer' ) ; |
1 | FCKConfig.ToolbarSets["Default";] |
----------------------------------------------------------------------------------
FCK编辑器中插入MP3
插入MP3对很多Blogger来说都是挺有用的。下面将介绍如何在Fck编辑器中插入MP3(在FCK工具栏上增加MP3插入按钮)。方法是使用UBB(适用sablog2.0)
特别说明:下文仅针对未去除插件功能的FCK编辑器,而sablog2.0默认编辑器已去掉了插件目录,所以你可以使用小A的FCK2.6精简版
方法:使用UBB标签
下面介绍参考了Sablogplus论坛T的方法,仅适用于SAX2.0。1、下载本文附件,解压到SAX2.0的根目录。
2、打开include/func目录中的front.func.php文件,在259行附近查找“页面调试信息”在上面加上下面代码
1 2 3 4 5 6 | // MP3播放器 function makemp3($id) { global $options; $code = '<object type="application/x-shockwave-flash" data="'.$options['url'].'tools/mp3player/dewplayer.swf?mp3='.$id.'&autostart=0&autoreplay=0&showtime=1" width="200" height="20"><param name="movie" value="'.$options['url'].'tools/mp3player/dewplayer.swf?mp3='.$id.'&autostart=0&autoreplay=0&showtime=1" /></object>'; return $code; } |
1 2 | //处理MP3播放 $article[\'content\'] = preg_replace("/\\s*\\[mp3\\](.+?)\\[\\/mp3\\]\\s*/ies", "makemp3(\'\\\\1\')", $article[\'content\']); |
5、编辑include\\editor\\fckconfig.js 查找
1 | FCKConfig.PluginsPath = FCKConfig.BasePath + \'plugins/\' ; |
6、查找FCKConfig.ToolbarSets["Default"]在它后面适当位置加上\'Insertmp3\'
想了解dewplayer播放器更多,请访问官方主页
No comments:
Post a Comment