I'm trying to figure out how to build a playlist from within a plug
I can create the playlist but I can not see it when I go back to mediaport and look for it.
I am trying to load into the current playlist
basically i do this
When I look at the playlist from the debugger it looks ok
when I go into mediaport and select playlist the current playlist is empty
what is the correct process to build and then start playing a playlist?
Thank you
I can create the playlist but I can not see it when I go back to mediaport and look for it.
I am trying to load into the current playlist
basically i do this
Code:
PlayListItem newItem = new PlayListItem(ep.EpisodeName,fn,0);
newItem.Type = PlayListItem.PlayListItemType.Video;
newItem.FileName = fn;
playlist.Add(newItem);
when I go into mediaport and select playlist the current playlist is empty
what is the correct process to build and then start playing a playlist?
Thank you