I've tried to get this going for hours so now is the time for advice!
(I'm a musician not a coder!)
I practiced by embedding the simple single video player (successfully) but now need a player with playlist as I have several flv vids.
My site is at www.markwhitemedia.com, I'm happy to take it one step at a time so have left the default playlist in.
I'm sure it's an easy one for the clever people here so any advice please help,...then I'll need to know about where the xml playlist goes in the code etc
my code is:
<script type='text/javascript' src='http://www.markwhitemedia.com/Media/swfobject.js'></script>
<div id='mediaspace'>This text will be replaced</div>
<script type='text/javascript'>
var so = new SWFObject('player.swf','ply','470','470','9','#');
so.addParam('allowfullscreen','true');
so.addParam('allowscriptaccess','always');
so.addParam('wmode','opaque');
so.addVariable('file','http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured');
so.addVariable('playlist','bottom');
so.addVariable('frontcolor','cccccc');
so.addVariable('lightcolor','66cc00');
so.addVariable('skin','http://www.markwhitemedia.com/Media/stylish.swf');
so.addVariable('backcolor','111111');
so.addVariable('playlistsize','200');
so.write('mediaspace');
</script>
Any help greatly appreciated
Mark

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"><html lang="en">
<head>
<script src="http://www.markwhitemedia.com/Media/swfobject.js"></script>
</head>
<body>
<div id="mediaspace"><a href="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash">Get the Adobe Flash Player to see this video.</a></div>
<script type='text/javascript'>
var so = new SWFObject('http://www.markwhitemedia.com/Media/player.swf', 'ply', '470', '470', '9.0.124', '#FFFFFF');
so.addParam('allowfullscreen', 'true');
so.addParam('allowscriptaccess', 'always');
so.addVariable('file', 'http://gdata.youtube.com/feeds/api/standardfeeds/recently_featured');
so.addVariable('playlist', 'bottom');
so.addVariable('playlistsize', '200');
so.addVariable('skin', 'http://www.markwhitemedia.com/Media/stylish.swf');
so.addVariable('frontcolor', 'CCCCCC');
so.addVariable('backcolor', '111111');
so.addVariable('lightcolor', '66CC00');
so.write('mediaspace');
</script>
</body>
</html>