Control Embedded Grooveshark Widgets using Javascr

2019-05-14 10:15发布

问题:

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:

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();