Normal
I think you need to specify the playlist you want to add the items toYou are obviously looking at video playlists but it should basically be the same as musicTry the AddItemsToPlaylist method in WebSVN - MediaPortal - Rev 27491 - /trunk/mediaportal/WindowPlugins/GUIMusic/GUIMusicBaseWindow.csI think you just need to add[code] playlistPlayer = PlayListPlayer.SingletonPlayer;PlayList pl = playlistPlayer.GetPlaylist(PlayListType.Video);playlistPlayer.CurrentPlaylistType = PlayListType.Video;[/code](I typed this manually so needs checking )
I think you need to specify the playlist you want to add the items to
You are obviously looking at video playlists but it should basically be the same as music
Try the AddItemsToPlaylist method in WebSVN - MediaPortal - Rev 27491 - /trunk/mediaportal/WindowPlugins/GUIMusic/GUIMusicBaseWindow.cs
I think you just need to add
[code] playlistPlayer = PlayListPlayer.SingletonPlayer;
PlayList pl = playlistPlayer.GetPlaylist(PlayListType.Video);
playlistPlayer.CurrentPlaylistType = PlayListType.Video;[/code]
(I typed this manually so needs checking )