Normal
I'm trying to figure out how to build a playlist from within a plugI 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 playlistbasically i do this[CODE] PlayListItem newItem = new PlayListItem(ep.EpisodeName,fn,0); newItem.Type = PlayListItem.PlayListItemType.Video; newItem.FileName = fn; playlist.Add(newItem);[/CODE]When I look at the playlist from the debugger it looks okwhen I go into mediaport and select playlist the current playlist is emptywhat is the correct process to build and then start playing a playlist?Thank you
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
[CODE]
PlayListItem newItem = new PlayListItem(ep.EpisodeName,fn,0);
newItem.Type = PlayListItem.PlayListItemType.Video;
newItem.FileName = fn;
playlist.Add(newItem);
[/CODE]
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