当前位置: 技术问答>java相关
请教一个在JavaScript中调用嵌入对象的方法属性的问题
来源: 互联网 发布时间:2015-06-03
本文导语: 我现在在做一个在网页中嵌入视频播放对象时遇到了一点的问题,请您给我帮帮忙 部分的代码如下: ...... ...... var filePlay = "" var noVodHtml = "" ... function PlayFile() { Live200.Command("display video="+ lmVideo.handle.toString())...
我现在在做一个在网页中嵌入视频播放对象时遇到了一点的问题,请您给我帮帮忙
部分的代码如下:
......
......
var filePlay = ""
var noVodHtml = ""
...
function PlayFile() {
Live200.Command("display video="+ lmVideo.handle.toString())
Live200.Command("play "+filePlay)
//alert(filePlay)
}
function Stop() {
Live200.Command("stop")
filePlay = ""
vod.innerHTML = noVodHtml
}
var NowStatus="true"
function Pause() {
if(NowStatus=="true"){
Live200.Command("pause")
NowStatus="false"
}
else{
SetPlayFile(filePlay)
NowStatus="true"
}
//Live200.Command("pause")
//filePlay = ""
//vod.innerHTML = noVodHtml
}
function Mute() {
Live200.Command("AllowMute = true")
}
...
...
现在我的几个PlayFile(),Stop(),Pause()方法都可以正常调用,但是Mute() 方法
不论我怎么试都不可以使用,请问哪位大侠以前使用过这个东东,能不能告诉我这个
对象的volume控制如何正确调用呢(包括静音和音量的增减)
不胜感激
部分的代码如下:
......
......
var filePlay = ""
var noVodHtml = ""
...
function PlayFile() {
Live200.Command("display video="+ lmVideo.handle.toString())
Live200.Command("play "+filePlay)
//alert(filePlay)
}
function Stop() {
Live200.Command("stop")
filePlay = ""
vod.innerHTML = noVodHtml
}
var NowStatus="true"
function Pause() {
if(NowStatus=="true"){
Live200.Command("pause")
NowStatus="false"
}
else{
SetPlayFile(filePlay)
NowStatus="true"
}
//Live200.Command("pause")
//filePlay = ""
//vod.innerHTML = noVodHtml
}
function Mute() {
Live200.Command("AllowMute = true")
}
...
...
现在我的几个PlayFile(),Stop(),Pause()方法都可以正常调用,但是Mute() 方法
不论我怎么试都不可以使用,请问哪位大侠以前使用过这个东东,能不能告诉我这个
对象的volume控制如何正确调用呢(包括静音和音量的增减)
不胜感激
|
不好意思,我没有用过,帮你up.....
|
对象的command后应该是一个method吧!你再相应的控件中需要设置相应的方法!不过我也不是很确定!不好意思!