Posts: 944
Joined: Apr 2010
Reputation:
395
_BJ1
Posting Freak
Posts: 944
As subject says, it is usefull to add an offset to ListItem.NextTitle/ListItem.NextStartDate/ListItem.NextStartTime. Gives the availability showing the next 3-4 items in info pages. Also it makes sense in my opinion moving PVR only related ListItems directly to the PVR section.
Regards
Posts: 802
Joined: Aug 2009
Reputation:
187
roidy
Posting Freak
Posts: 802
2024-08-26, 19:42
(This post was last modified: 2024-08-26, 19:44 by roidy. Edited 2 times in total.)
.offset and .position are only for items in a playlist.
For example:-
offset is from the current playing item
VideoPlayer.offset(-1).Title - title of previous item in playlist
VideoPlayer.offset(0).Title - title of current item in playlist
VideoPlayer.offset(1).Title - title of next item in playlist
position is absolute from the beginning of the playlist
VideoPlayer.position(0).Title - title of first item in playlist
VideoPlayer.position(1).Title - title of second item in playlist
Posts: 838
Joined: Apr 2013
Reputation:
46
Thanks for the explanation. Truly appreciated.