使用 Javascript 控制嵌入式 Grooveshark 小部件?

发布于 2024-11-26 03:21:02 字数 210 浏览 1 评论 0原文

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

想要按顺序播放单独的单首歌曲小部件,以及soundcloud 用户页面上的单独曲目。

我没有看到任何官方支持的内容,也无法通过谷歌搜索找到任何内容。

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

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.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

世界如花海般美丽 2024-12-03 03:21:02

我快速浏览了反编译的动作脚本,发现了以下ExternalInterface回调:

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

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

widget.stopSong();

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();
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文