本文介绍了使用 Javascript 控制嵌入式 Grooveshark 小部件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我将如何使用 Javascript 播放/暂停嵌入的 Grooveshark 小部件?

How would I play/pause an embedded Grooveshark widget using Javascript?

想要按顺序播放单独的单曲小部件,或者在 soundcloud 用户页面上播放单独的曲目.

Would like to play separate single-song widgets in sequence, ala separate tracks on a soundcloud user's page.

我没有看到任何官方支持的东西,也没有通过谷歌搜索找到任何东西.

I didn't see anything officially supported, and couldn't find anything via googling.

推荐答案

我快速浏览了反编译的 actionscript 并发现以下 ExternalInterface 回调:

I took a quick glance at the decompiled actionscript and turned up the following ExternalInterface callbacks:

getVersion()
getCurrentSong()
setSongCompleteCallback(string)
setErrorCallback(string)
setStatusCallback(string)
setSongChangeCallback(string)
playSong()
pauseSong()
resumeSong()
stopSong()
replaceSongs(array)

理论上,您应该能够执行以下操作:

In theory, you should be able to do something like the following:

widget.stopSong();

这篇关于使用 Javascript 控制嵌入式 Grooveshark 小部件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-27 22:04
查看更多