Forum Moderators: open
Once a song is over, I want it to load the next song automatically. I don't have the Original .fla.
The frame is plays in is
<?php
if (!isset ($_GET['song']))
{$rootsong = '0';}
else
{$rootsong = $_GET['song'];}
?>
</head>
<body>
<table width="837" border="0" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="703">
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,19,0" width="300" height="55">
<param name="movie" value="music.swf?rootsong=<? echo $rootsong ?>" />
<param name="quality" value="high" />
<embed src="music.swf?rootsong=<? echo $rootsong ?>" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="300" height="55"></embed>
</object>
</td>
</tr>
</table>
<p> </p>
<p> </p>
<p> </p>
</body>
</html>
------------
I link to it in the topframe by
<a href="sound_frame.php?song=1" target="bottomFrame">
------------
XML list looks like
<?xml version="1.0" encoding="UTF-8"?>
<songs>
<song name ="Isn' t It Romantic" file="songs/IsntItRomantic.mp3" />
<song name ="Don' t Blame Me" file="songs/DontBlameMe.mp3" />
etc...
</songs>