silverlight媒体播放停止状态
我正在使用 SMF silverlight 媒体播放器。我使用以下代码来获取播放器的当前音量
this.item = function(){
alert(this.player.GetVolume());
}
,该音量工作正常,但我也想要媒体的当前状态。那有什么属性。我在 API 文档中没有看到这一点,
谢谢
I am using SMF silverlight media player. I am using the following code to get me the current volume on player
this.item = function(){
alert(this.player.GetVolume());
}
which works fine but I also want the current status of the media. Whats the property for that. I didn't see that in API docs
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我相信您需要
PlayState
属性,该属性的类型为MediaPluginState
并且可以是以下值之一:I believe you want the
PlayState
property, which is of typeMediaPluginState
and can be one of these values: