I want to be able to pause the current track but can't seem to find any method of doing so.

Documentation is here: http://developer.spotify.com/download/spotify-apps-api/reference/

Am using the following to play a track...

m.player.play(uri)

but there doesn't seem to be an equivalent m.player.pause(uri) or similar...

link|improve this question
feedback

1 Answer

up vote 4 down vote accepted

Use this:

m.player.playing = 0;

Read here about the player: http://developer.spotify.com/download/spotify-apps-api/reference/f19ff300f8.html

link|improve this answer
Here's another example of how to build a play/pause toggle: github.com/ptrwtts/kitchensink/blob/master/js/player.js#L17 – mager Jan 13 at 15:43
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.