My question is simple (I hope 8)). How do you set the artist of an IPlaylistItem. In version 2.0 it was SetArtist but this isn’t working anymore. (I gues do to the multiple artists)
mAirList has supported more than one artist since version 3, so “Artists” is now actually a list of strings. The list can be accessed by Item.GetArtists, and you can add strings with Add, and use Clear to delete the previous list first.
Item.GetArtists.Clear;
Item.GetArtists.Add('My artist');
Thanks! My script is working ;D