WEB开发网
开发学院网页设计JavaScript js 控制 Windows Media Player 阅读

js 控制 Windows Media Player

 2012-10-17 13:30:32 来源:WEB开发网   
核心提示:Real PlayerJavascript:player.DoPlay() 播放player.DoPause() 暂停player.DoStop() 停止player.GetLength() 返回播放文件的总长度(以毫秒为单位)player.GetPosition() 返回播放文件的当前时间位置(以毫秒为单位)play


Real Player

Javascript:

player.DoPlay() 播放
player.DoPause() 暂停
player.DoStop() 停止
player.GetLength() 返回播放文件的总长度(以毫秒为单位)
player.GetPosition() 返回播放文件的当前时间位置(以毫秒为单位)
player.GetPlayState() 返回播放器状态(0:停止,1:连接,2:缓冲,3:播放,4:暂停,5:寻找)
player.SetPosition(n) 时间位置跳到n的地方(n取值以毫秒为单位)
player.SetVolume(n) 设置音量(n取值为0到100)
player.SetMute(s) 静音(s取值为true和false)
player.SetFullScreen() 全屏
player.setSource() 设置文件来源


Real Player

Javascript:

播放动画:Play()
停止动画:StopPlay()
动画是否正在播放:IsPlaying()
跳转到某帧:GotoFrame(frame_number)
获取动画总帧数:TotalFrames()
回传当前动画所在帧数:CurrentFrame()
使动画返回第一帧:Rewind()
放大指定区域:SetZoomRect(left,top,right,buttom)
改变动画大小:Zoom(percent)
使动画在 x,y 方向上平移:Pan(x_position,y_position,unit)
返回动画被载入的百分比:PercentLoaded()
加载动画:LoadMovie(level_number,path)
例:(网页中的 Flash id).LoadMovie(0, "***/***.swf");
movie_clip 跳转到指定帧数:TGotoFrame(movie_clip,frame_number)
movie_clip 跳转到指定标签:TGotoLabel(movie_clip,label_name)
例:(网页中的 Flash id).TGotoFrame("_root.实例名.次实例名","标签名");
回传 movie_clip 当前帧:TCurrentFrame(movie_clip)
回传 movie_clip 当前标签:TCurrentLabel(movie_clip)
播放 movie_clip:TPlay(movie_clip)
停止 movie_clip 的播放:TStopPlay(movie_clip)
获取变量:GetVariable(variable_name)
变量赋值:SetVariable(variable_name,value)
call 指定帧上的 action:TCallFrame(movie_clip,frame_number)
call 指定标签上的 action:TCallLabel(movie_clip,label)
获取 movie_clip 的指定属性:TGetProperty(movie_clip,property)
设置 movie_clip 的指定属性:TSetProperty(movie_clip,property,number)


//清除embed對象==================================

function removeEmbed(標籤){
var 對象=標籤.document.getElementsByTagName('embed');
for(i=對象.length-1;i>=0;i--){
if(對象[i].src.search(/\.(wav|avi|au|ra|rm|mid|wm|mp)/i)!=-1){
對象[i].removeNode(true);
}
}
}
}

//清除flash=====================================

function removeFlash(標籤){
var 對象=標籤.document.getElementsByTagName('object');
for(var i=對象.length-1;i>=0;i--){
if(對象[i].classid.toLowerCase()=='clsid:d27cdb6e-ae6d-11cf-96b8-444553540000'){
if(對象[i].movie.search(/\.swf/i)!=-1){
對象[i].removeNode(true);
}
}
}
}
}

上一页  1 2 

Tags:js 控制 Windows

编辑录入:爽爽 [复制链接] [打 印]
赞助商链接