Broken Software MODERATOR


 Age : 18 Joined : 19 May 2008 Posts : 148 Location : Sa pus ng ibang taong di kuh mahal Status : Its complicated™ School : OLSHCO Mood :  Reputation :
  (0/100) Violations :
  (0/100) Credits :
  (0/100)
 | Subject: Costomizing the Mp3 Player Sat Aug 09, 2008 2:02 pm | |
| Tutorial
You will need to add code to the bare-bones markup that is used for the default player. This is shown below in blue. <script language="JavaScript" src="http://www.fakedomain.com/myname/audio/audio-player.js"></script> <object type="application/x-shockwave-flash" data="http://www.fakedomain.com/myname/audio/player.swf" id="audioplayer1" height="24" width="290"> <param name="movie" value="http://www.fakedomain.com/myname/audio/player.swf"> <param name="FlashVars" value="playerID=1& bg=0xf8f8f8& leftbg=0xeeeeee& lefticon=0x666666& rightbg=0xcccccc& rightbghover=0x999999& righticon=0x666666& righticonhover=0xffffff& text=0x666666& slider=0x666666& track=0xFFFFFF& border=0x666666& loader=0x9FFFB8& loop=no& autostart=no& soundFile=http://www.fakedomain.com/myname/audio/music.mp3"> <param name="quality" value="high"> <param name="menu" value="false"> <param name="wmode" value="transparent"> </object>
First, PLEASE NOTE that you cannot separate the lines as I have above. There can be NO hard returns from the beginning of <param name= to the end of the filesname .mp3"> Note also that it is essential that each instance of & remain in place. Here is Martin Laine's diagram showing what nine of the options mean: 
There are three additional color options and two options that are not related to the appearance of the player. Color Options
There are 12 color options: | bg | Background color (see diagram) | | leftbg | Left background (see diagram) | | lefticon | Left icon (see diagram) | | rightbg | Right background (see diagram) | | rightbghover | The color the right background will change to on mouseover | | righticon | Right icon (see diagram) | | righticonhover | The color the right icon will change to on mouseover | | text | Text (see diagram) | | slider | Slider (see diagram) | | track | Track (see diagram) | | border | This is the line surrounding the loader bar | | loader | Loader bar (see diagram) | If you don't understand hexadecimal colors, see this page. Other Options
These options are not related to the appearance of the player: | loop | Will the audio file repeat automatically? | Can be yes or no | | autostart | Will the audio file start to play without the player being clicked? | Can be yes or no | Here is a modified version of the same player: Here is the code that made it: <object type="application/x-shockwave-flash" data="http://www.fakedomain.com/myname/audio/player.swf" id="audioplayer2" height="24" width="290"> <param name="movie" value="http://www.fakedomain.com/myname/audio/player.swf"> <param name="FlashVars" value="playerID=2& bg=0x999999& leftbg=0x000000& lefticon=0xffffff& rightbg=0xffffff& rightbghover=0xcc0000& righticon=0x000000& righticonhover=0xcccccc& text=0xcc0000& slider=0xcc0000& track=0xcccccc& border=0xcc0000& loader=0xffcccc& loop=no& autostart=no& soundFile=http://www.fakedomain.com/myname/audio/music.mp3"> <param name="quality" value="high"> <param name="menu" value="false"> <param name="wmode" value="transparent"> </object> _________________ Piex, Broken Will Be on leave For 2-3weeks thx MAhal Ko ang Sarili koh Regard sa lahat ng tae,Ate Diosa Ill be missin yah byebye Out |
|