Großer Wunsch: Eine Prozedur
procedure OnPlaylistItemInsert(item: IPlaylistItem; PlaylistIndex, Index: integer);
begin
// Called when item is inserted into playlist.
// Item: The said item.
// Index: The playlist index the new item is assigned to.
// PlaylistIndex: Index of playlist concerned.
end;
Und gerne auch
procedure OnPlaylistItemMove(item: IPlaylistItem; PlaylistIndex, NewIndex, OldIndex: integer);
begin
// Called when item is moved within playlist.
// Item: The said item.
// NewIndex: The playlist index the new item is moved to.
// OldIndex: The playlist index the item has been moved from.
// PlaylistIndex: Index of playlist concerned.
end;
Nützliche Grüße
TSD