Control Embedded Grooveshark Widgets using Javascr

2019-05-14 10:22发布

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.

1条回答
不美不萌又怎样
2楼-- · 2019-05-14 10:56

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();
查看更多
登录 后发表回答