StaleBetty - 19 May 2006 03:42 AM
I DID IT!!! I downloaded the swf file from http://www.1pixelout.net/code/audio-player-wordpress-plugin/ and then followed Bruce’s instructions to create a custom field for the mp3 and then I added this to my index:
{if mp3 != ""}
<object type="application/x-shockwave-flash" data="http://www.domain.com/pathto/player.swf" id="audioplayer" height="24" width="290"><br>
<param name="movie" value="http://www.domain.com/pathto/player.swf">
<param name="FlashVars" value="playerID=2&bg=0xFDD1DD&leftbg=0xA81E42&lefticon=0xF2F2F2&rightbg=0xBDD758&
rightbghover=0xA81E42&righticon=0xF2F2F2&righticonhover=0xFFFFFF&text=0xA81E42&
slider=0xA81E42&track=0xFFFFFF&border=0xFFFFFF&loader=0xBDD758&soundFile=http://www.domain.com/pathto/{mp3}">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="wmode" value="transparent"></object>
{/if}
on the 1pixelout site, he has a diagram on how to customize the colors. It was sooo easy once I was able to wrap my head around what Bruce was saying… that you can embed ANY flash player. lol Thanks so much, Bruce!!!
..Bruce.. StaleBetty, I think I’m missing something. Here is the code i imported:
<center>{if mp3 != ""}
<object type="application/x-shockwave-flash" data="http://www.famousbeats.net/flash_player/skins/wp_player.swf" id="audioplayer" height="24" width="290"><br>
<param name="FlashVars" value="playerID=2&bg=0xFDD1DD&leftbg=0xA81E42&lefticon=0xF2F2F2&rightbg=0xBDD758&
rightbghover=0xA81E42&righticon=0xF2F2F2&righticonhover=0xFFFFFF&text=0xA81E42&
slider=0xA81E42&track=0xFFFFFF&border=0xFFFFFF&loader=0xBDD758&soundFile=http://www.famousbeats.net/images/uploads/{mp3}">
<param name="quality" value="high">
<param name="menu" value="false">
<param name="wmode" value="transparent"></object>
{/if}
</center>
If that is correct, where exactly in the index did you place it?