I'm trying how to figure out how to play/insert a single track with v.Player. I'm using the following code:

 var player = new v.Player();
 player.track = objTrack;
 player.context = objTrack.album;

Console error message: Uncaught TypeError: Cannot read property 'length' of undefined

It works like a charm when playing from a playlist with:

player.track = Playlist.get(0);
player.context = Playlist;

And if I use following code, it works but it starts the playback automatically:

player.play(objTrack, objTrack.album);

Do you have any clue? Thanks.

link|improve this question

Did you try loading the Track, then loading the album (e.g. by using Album.fromURI(objTrack.album.uri), setting this as the context and setting the track via objAlbum.get(objTrack.trackNumber)? – tobias_ Dec 6 '11 at 17:16
OK, I solved it, don't really know how. But it works. Yay! =) Thanks for your answer! – Kristoffer Svanmark Dec 7 '11 at 9:05
feedback

closed as too localized by Tim Post Dec 7 '11 at 9:14

This question is unlikely to ever help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. See the FAQ for guidance on how to improve it.

Browse other questions tagged or ask your own question.