[Plugin: Audio Player] Using FlashVars to set configurable options?
-
I really do not like to use javascript in my pages and have opted to use the object tag with the standalone player. This loads the player just fine but there seems to be a few issues. I have tried using the FlashVars to set options such as color changes, and remaining.
Most of the color settings work but skip for instance does not seem to be an option. skip is supposed to alter Previous/Next skip buttons which don’t even seem to exist. The remaining option when set to yes also does not seem to have any effect as it still shows the time counting from start to end. I have made sure to keep settings all on the same line with no line breaks between the options.
To show a very basic example of what I am trying to do I have this code below.
<object type=”application/x-shockwave-flash” data=”http://domain.tld/player/player.swf” id=”audioplayer1″ height=”24″ width=”290″>
<param name=”movie” value=”http://domain.tld/player/player.swf”>
<param name=”FlashVars” value=”playerID=1&bg=0x000000&skip=0xFFFFFF&text=0xFFFFFF&remaining=yes&soundFile=http://domain.tld/mp3/song1.mp3,http://domain.tld/mp3/song2.mp3″>
<param name=”quality” value=”high”>
<param name=”menu” value=”false”>
<param name=”wmode” value=”transparent”>
</object>
The topic ‘[Plugin: Audio Player] Using FlashVars to set configurable options?’ is closed to new replies.