|
Would you like to create a music player like this to play my songs on your site? You choose which songs you'd like to play.
To create your own music player to play my songs on your site just download this file and upload to your site two files include in the zip.
Download 
Then paste the following code in the html of one of your pages.
One of the files included in the zip file is an xml configuration file. The file allows you to change the list of songs and the title of the player. The file looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<player showDisplay="yes" showPlaylist="no" autoStart="no" topTitle="Glenn Bennett" skinColor="3">
<Song path="/ShortStack/MyFathersFamily.mp3" title="My Father's Family" />
<Song path="/ShortStack/WoodOnTheFire.mp3" title="Wood on the Fire"/>
<Song path="/ShortStack/WhenLifeGivesYouLove.mp3" title="When Life Gives You Love"/>
<Song path="/ShortStack/IveGotToFindOutForMyself.mp3" title="I've Got to Find Out For MySelf"/>
</player>
You can change the title by changing this line
topTitle="Glenn Bennett"
You can change the skin color by changing this line
skinColor="3"
|