Hi,
I have read the other thread below about getting all videos to play playlist using {flvlist}playlist.xml{flvlist}
what i want to do is one for mp3's
e.g. {mp3list}playlist.xml{/mp3list}
I have tried using the original code from this
"flvlist" => "
<span style=\"width:{VWIDTH}px;height:{VHEIGHT}px;\" class=\"allvideos_player\" title=\"You Missed Out\">
<object type=\"application/x-shockwave-flash\" style=\"width:{VWIDTH}px;height:{VHEIGHT}px;\" data=\"{SITEURL}/plugins/content/jw_allvideos/includes/players/mediaplayer/player.swf\" title=\"You Missed Out\">
<param name=\"movie\" value=\"{SITEURL}/plugins/content/jw_allvideos/includes/players/mediaplayer/player.swf\" />
<param name=\"quality\" value=\"high\" />
<param name=\"wmode\" value=\"{TRANSPARENCY}\" />
<param name=\"bgcolor\" value=\"{BACKGROUND}\" />
<param name=\"autoplay\" value=\"{AUTOPLAY}\" />
<param name=\"allowfullscreen\" value=\"true\" />
<param name=\"allowscriptaccess\" value=\"always\" />
<param name=\"flashvars\" value=\"file=$mosConfig_live_site/{VFOLDER}/{AVSOURCE}&image=$mosConfig_live_site/{VFOLDER}/{AVSOURCE}.jpg&autostart={AUTOPLAY}{CONTROLBAR}&fullscreen=true&playlist=over&playlistsize=80\" />
</object>
</span>
",
into
"mp3list" => "
<script src=\"$mosConfig_live_site/{VFOLDER}/player/swfobject.js\" type=\"text/javascript\"></script> <div id=\"player\"> </div>
<script type=\"text/javascript\">var so = new SWFObject('$mosConfig_live_site/{VFOLDER}/player/player.swf','ply','{VWIDTH}','{VHEIGHT}','9');
so.addParam('allowscriptaccess','always');
so.addParam('allowfullscreen','true');
so.addParam('flashvars','&file=$mosConfig_live_site/{VFOLDER}/{AVSOURCE}&autostart=true&displayclick=fullscreen&repeat=always&stretching=exactfit');
so.write('player');
</script>
",
no joy!!!
anyone know how to do this?