I have gotten a playlists to work inside the Flash player. But I'd like to be able to format the playlist, so I've tried the Javascript option suggested at the Playlists Tutorial page (http://www.longtailvideo.com/support/tutorials/Playlist-Tutorial). However, I have not yet succeeded in getting any playlist to display using this method.
I have confirmed (using Firebug) that the relevant files are loading -- jquery.playlist.js, playlist.css, and jquery.js. I've even tried different versions of jquery.js (the version at http://www.longtailvideo.com/support/tutorials/Playlist-Tutorial is 1.3.1; I already had 1.3.2 installed). But for whatever reason, the JS is not firing the CSS and generating the html needed to display the playlist.
Here's the code I've been using to successfully load the player and play a video:
<script type="text/javascript">
var flashvars = {}; // apply to JW FLV Media Player
flashvars.file = encodeURIComponent('playlistRSS.xml?' + Math.round(1000 * Math.random()));
flashvars.id = "PlayerObj";
flashvars.playlist = "bottom";
flashvars.playlistsize = "360";
var params = {}; // apply to Adobe Flash Player
params.allowfullscreen = "true";
params.allowscriptaccess = "sameDomain";
params.bgcolor = "#FFFFFF";
var attributes = {}; // apply to the HTML Object element
attributes.id = "PlayerObj";
attributes.name = "PlayerObj";
swfobject.embedSWF("http://../../../player.swf", "irPlayer", "370", "640", "9.0.124", "", flashvars, params, attributes);
</script>
Thanks for any help.

There is a problem in the files they posted. Use the javascript.js file that the tutorial page itself is calling (in addition to the files the tutorial tells you to use) and it should work. I spent and evening trying to figure out what I was doing wrong and then dissected the tutorial page itself and noticed that on the tutorial page they aren't using the files that they tell you to use.
They are aware of the problem and will be posting fixed files. In the meantime, add the javascript.js page and you should be fine.