Playlist control - playlist.playoffset(video,0) doesn't do the trick
#1
Is there a trick I'm missing with setting the playlist to zero position?

this is what I've used:
Code:
xbmc.executebuiltin('playlist.playoffset(video,0)')

It seems that if I'm inside a playlist (item 4 for example) and I activate another playlist - it starts with the same item index as previously was in the old playlist... Is there a way to reset it? I've also seen this command used: (without the 'video' word) but both didn't nothing for me, it still happens.

Code:
xbmc.executebuiltin('XBMC.Playlist.PlayOffset(0)')

Thanks!
Reply
#2
huh.. I tried deleting the post and it didn't work.

I solved my own problem by passing playlist to the play method:

Code:
xbmc.Player().play(playlist)
Reply

Logout Mark Read Team Forum Stats Members Help
Playlist control - playlist.playoffset(video,0) doesn't do the trick0