I have the player loading the playlists.
Now I'm asked to have the player play through all of the items on the playlist without having to hit next or hit on the item. I haven't looked into that just yet.
Main problem I'm having is setting up the d-related variables for each playlist item. I'm not sure how to edit the playlist.xml file in order for the plugin to understand where to get each items d-related.xml as in:
<rss version="2.0" xmlns:jwplayer="http://developer.longtailvideo.com/trac/wiki/FlashFormats"
xmlns:media="http://search.yahoo.com/mrss/">
<channel>
<title><?=$playlist->getName()?></title>
<?php foreach($items as $item):?>
<item>
<title><?=$item->getJWTitle()?></title>
<link><?=$item->getJWLink()?></link>
<description><?=$item->getJWDescription()?></description>
<enclosure url="<?=$item->getJWURL()?>" />
<jwplayer:author><?=$item->getJWAuthor()?></jwplayer:author>
<jwplayer:type><?=$item->getJWType()?></jwplayer:type>
<jwplayer:duration><?=$item->getJWDuration()?></jwplayer:duration>
<jwplayer:streamer><?=$item->getJWStreamer()?></jwplayer:streamer>
<jwplayer:autostart>true</jwplayer:autostart>
<?php if(get_class($item) == 'Video'): ?>
<jwplayer:drelated>
<jwplayer:dxmlpath>/video/related?video_id=<?=$item->getId()?></jwplayer:dxmlpath>
<!-- ^ this area here i just made these tags up because I'm not quite sure what they should actually be. -->
</jwplayer:drelated>
<?php endif; ?>
<media:thumbnail url="<?=$item->getJWThumbnail()?>"/>
</item>
<?php endforeach; ?>
</channel>
</rss>
any help would be greatly appreciated.

and while i'm at it.
is there any possibility to dynamically edit the playlist through javascript API? if that's not possible i have no choice but to hide the default playlist and make my own HTML playlist with reorder remove and add controls