Hi tugaradiofm,
The best way to achieve this is to use PHP.
You can create an inline frame on you main page, and source the information from the PHP script that is available from the pre-configured scripts within your account. The trick is to refresh the inline frame ONLY....that way the song titles update (lets say every 2 mins), but the flash player continues to play consistently.
The required PHP script can be copied from you scripts library for you particular server.
You can see mine at work at
http://www.deeplounge.co.ukHere is my my script from the display page (this gets linked to my inline frame)...
*****Place this in the HEAD section ******<!-- Now Playing Script -->
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script>
$(document).ready(function() {
$("#responsecontainer2").load("php/now-playing.php");
var refreshId = setInterval(function() {
$("#responsecontainer2").load('php/now-playing.php?randval='+ Math.random());
}, 20000);
});
</script>
<!-- END Now Playing Script -->
*****Place this in the BODY section ******<!--Now Playing container-->
<p class="auto-style5" style="width: 93px; position: relative; left: 139px; top: 79px; height: 21px;">
<div id="responsecontainer2" class="auto-style4" style="width: 335px; height: 25px; color: #00FFFF; position: relative; left: 1px; top: -42px;"></div>
<!--END Now Playing container-->
I hope this helps.
Regards
Mark