As I understand it, the javascript addItem function works with individual files, but not with playlists. They appear on the list, but they do nothing when their turn comes in the list or when they are double-clicked on.
Is there any chance that the ability to enqueue or append a playlist to a currently playing list will be made available in the future? This is a feature I would really, really like to see.
Thanks,
-kirax2
What list are you talking about here:
You can load (not append) a playlist with the loadFile() function. You can append multiple items with repeated (looping) use of addItem(), but it gets slow if there are more than 10-15 items.
Making gigantic playlists is best done on the server, then loaded into the player as one playlist. JavaScript running on the client is extremely slow compared to PHP or other scripts executing on a server.