当前位置:我的异常网» Java Web开发 » 怎么在JSP页面中加载flash播放器
怎么在JSP页面中加载flash播放器(2)
www.myexceptions.net 网友分享于:2013-12-29 浏览:430次
result = Math.floor(value / 60).toString() + ":0" + result;
} else {
result = Math.floor(value / 60).toString() + ":" + result;
}
return result;
}
/* 按下滑块,暂停播放 */
private function thumbP(event:SliderEvent):void{
vd.pause();
}
/* 松开滑块,继续播放 */
private function thumbR(event:SliderEvent):void{
vd.playheadTime=hsLength.value;
if(vd.playing){
vd.play();
}else{
vd.pause();
}
}
/*折叠播放列表*/
private function minWindow():void{
if(twLeft.width==twLeft.minWidth){
twLeft.width=w;
}else{
twLeft.width=twLeft.minWidth;
}
}
]]>
doubleClickEnabled="true" doubleClick="itemPlay(event)">
allowTrackClick="true" thumbRelease="thumbR(event)" thumbPress="thumbP(event)" />
文章评论