| 修改方法:将“程序部份”的文件全部传至论坛根目录,“模板部份”的文本文档,替换对应位置的界面模板;
 如果想自己动手一步一步修改(非官方8.0.0版本或者已经有改动)请看下面详细步骤。
 ================================================== 一、新增文件列表:inc/FlvPlayer.swf
 skins/default/ubb/flv.gif
 images/post/flv.gif
 images/post/flv.htm
 二、文件修改(为提供方便,在压缩包中已经含有修改过的文件及模板,可直接替换): ①inc/Dv_ubbcode.asp找到
 If xml.loadxml(\"
 \" & replace(s,\"&\",\"&\") &\"\") Then 在上面一行添加
 \'--------------------------------------------------
 \'add FlvPlayer by xintiao
 If InStr(Ubblists,\",43,\")>0 Or sType=1 Then
 s=Dv_UbbCode_iS2(s,\"flv\",_
 \"27CDB6E-AE6D-11cf-96B8-444553540000\"\" data=\"\"inc/FlvPlayer.swf?file=$3&showfsbutton=false&autostart=true\"\" width=\"\"$1\"\" height=\"\"$2\"\">\"&_
 \"\"&_
 \"\"&_
 \"\"&_
 \"\"&_
 \"\",_
 \"27CDB6E-AE6D-11cf-96B8-444553540000\"\" data=\"\"inc/FlvPlayer.swf?file=$3&showfsbutton=false&autostart=false\"\" width=\"\"$1\"\" height=\"\"$2\"\">\"&_
 \"\"&_
 \"\"&_
 \"\"&_
 \"\"&_
 \"\"& replace(Mtinfo,\"$4\",\"$3\"),_
 PostUserGroup,Cint(Board_Setting(9) * mt),\"=*([0-9]*),*([0-9]*)\")
 \'Dv8.0 FlvPlaayer自定义播放模式;
 s=Dv_UbbCode_iS2(s,\"flv\",_
 \"27CDB6E-AE6D-11cf-96B8-444553540000\"\" data=\"\"inc/FlvPlayer.swf?file=$4&showfsbutton=false&autostart=$3\"\" width=\"\"$1\"\" height=\"\"$2\"\">\"&_
 \"\"&_
 \"\"&_
 \"\"&_
 \"\"&_
 \"\",_
 \"27CDB6E-AE6D-11cf-96B8-444553540000\"\" data=\"\"inc/FlvPlayer.swf?file=$4&showfsbutton=false&autostart=false\"\" width=\"\"$1\"\" height=\"\"$2\"\">\"&_
 \"\"&_
 \"\"&_
 \"\"&_
 \"\"&_
 \"\"&_
 Mtinfo,PostUserGroup,Cint(Board_Setting(9) * mt),\"=*([0-9]*),*([0-9]*),*([0|1|true|false]*)\")
 End If
 \'--------------------------------------------------
 ②inc/Ubblist.asp
 找到
 Dim Dv_ubb(54),i
 改为
 Dim Dv_ubb(55),i
 找到Dv_ubb(53)=\"[/username]\"
  v_ubb(54)=\"\" 下面一行添加
 Dv_ubb(55)=\"[/flv]\"
 找到For i=14 to 54
 改为
 For i=14 to 55
 ③images/post/DhtmlEdit1.js
 找到
 function rand() {
 上面一行添加
 //add FlvPlayer by xintiao
 function Dvbbs_forflv()
 {
 var arr = showModalDialog(\"images/post/flv.htm\", \"\", \"dialogWidth:30em; dialogHeight:13em; status:0; help:0\");
 
 if (arr != null){
 var ss;
 ss=arr.split(\"*\")
 path=ss[0];
 autostart=ss[1];
 width=ss[2];
 height=ss[3];
 ran=rand();
 var string;
 var ubbstring;
 string=\"[FLV=\"+ width +\",\"+ height +\",\"+ autostart +\"]\"+ path +\"[/FLV]\";
 IframeID.document.body.innerHTML+=string;
 }
 else IframeID.focus();
 }
 ④images/post/post.js
 找到
 function Cmov() {
 上面一行添加
 //add FlvPlayer by xintiao
 function Cflv() {
 txt2=prompt(\"视频的宽度,高度,播放参数\\r(播放参数:false=手动播放,true=自动播放)\",\"500,350,true\");
 if (txt2!=null) {
 txt=prompt(\"视频文件的地址\",\"http://\");
 if (txt!=null) {
 if (txt2==\"\") {
 AddTxt=\"[flv=500,350,true]\"+txt;
 AddText(AddTxt);
 AddTxt=\"[/flv]\";
 AddText(AddTxt);
 } else {
 AddTxt=\"[flv=\"+txt2+\"]\"+txt;
 AddText(AddTxt);
 AddTxt=\"[/flv]\";
 AddText(AddTxt);
 }
 }
 }
 }
 ⑤dv_plus/indivgroup/js/dv_form.js找到
 case \'RM\':
 上面一行添加
 case \'FLV\':
 txt1 = \"Flv影音文件宽度,高度,播放参数\\r(播放参数:false=手动播放,true=自动播放)\";
 val1 = \"500,350,true\";
 txt2 = \"Flv 影音文件的地址\";
 val2 = \"http://\"
 break;
 三、模板修改(为提供方便,在压缩包中已经含有修改过的文件及模板,可直接替换):
 ① page_dispbbs template.html(0)找到
 
  下面一行添加
 
  ②page_post template.html(3)
 找到
 
  在下面一行添加
 
 
 ③page_post template.html(9)
 找到
 {$PicUrl}ubb/|bold.gif|italicize.gif|underline.gif|center.gif|url1.gif|email1.gif|image.gif|swf.gif|Shockwave.gif|rm.gif|mp.gif|qt.gif|quote1.gif|fly.gif|move.gif|glow.gif|shadow.gif|ubb_smilie.gif|csound.gif
 改为
 {$PicUrl}ubb/|bold.gif|italicize.gif|underline.gif|center.gif|url1.gif|email1.gif|image.gif|swf.gif|Shockwave.gif|rm.gif|mp.gif|qt.gif|quote1.gif|fly.gif|move.gif|glow.gif|shadow.gif|ubb_smilie.gif|csound.gif|flv.gif
 ④page_post template.html(11)
 找到
 
  下面一行增加
 
 |