

The following components of the player can be turned off by adding the appropriate code to the URL string:
album=off
bottom_controls=off
counter=off
volume_btn=off
|
Example A1

If the album cover component of the player is turned off, the bottom controls will move underneath the playlist area and stretch to playlist area size.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="170">
<param name="movie" value="xspf_player.swf?&album=off" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="xspf_player.swf?&album=off" quality="high" wmode="transparent"
type="application/x-shockwave-flash" width="400" height="170"></embed>
</object> |
Example A2

This feature comes in handy when more room is needed for track tiles, although the player will automatically scroll track info if it does not fit.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="170">
<param name="movie" value="xspf_player.swf?&counter=off" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="xspf_player.swf?&counter=off" quality="high" wmode="transparent"
type="application/x-shockwave-flash" width="400" height="170"></embed>
</object> |
Example A3

Another room saver feature.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="170">
<param name="movie" value="xspf_player.swf?&bottom_controls=off" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="xspf_player.swf?&bottom_controls=off" quality="high" wmode="transparent"
type="application/x-shockwave-flash" width="400" height="170"></embed>
</object> |
Example A4

Frees up more space for track title.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="170">
<param name="movie" value="xspf_player.swf?&volume_btn=off" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="xspf_player.swf?&volume_btn=off" quality="high" wmode="transparent"
type="application/x-shockwave-flash" width="400" height="170"></embed>
</object> |
Example A5

In this example, all possible components are off, coupled with the html width parameter
(set to 300 pixels across) and height parameter (set to 132). The longest "named" track fits comfortably within the track info bar.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="400" height="170">
<param name="movie" value="xspf_player.swf?&album=off&counter=off&bottom_controls=off&volume_btn=off" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="xspf_player.swf?&album=off&counter=off&bottom_controls=off&volume_btn=off" quality="high" wmode="transparent" type="application/x-shockwave-flash" width="400" height="170"></embed>
</object> |
Example B1

This is an example of combining the component remover feature with the player mode feature. The player mode is set to small. The volume button, counter, and
bottom controls have been removed. Width & height are set as well.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="280" height="86">
<param name="movie" value="xspf_player.swf?&player_mode=small&counter=off&bottom_controls=off&volume_btn=off" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="xspf_player.swf?&player_mode=small&counter=off&bottom_controls=off&volume_btn=off" quality="high" wmode="transparent"
type="application/x-shockwave-flash" width="280" height="86"></embed>
</object> |
Example B2

Another combo example, this time with player mode mini. Since mini mode automatically turns off the album, playlist, and bottom controls area, all that is added in the html code is volume_btn=off and counter=off.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="110" height="86">
<param name="movie" value="xspf_player.swf?&player_mode=small&counter=off&volume_btn=off" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="xspf_player.swf?&player_mode=small&counter=off&volume_btn=off" quality="high" wmode="transparent"
type="application/x-shockwave-flash" width="110" height="86"></embed>
</object> |
Example B3

Yet another combo example. Player mode is set to mini. Tacked on volume_btn=off
and counter=off. But this time the html width and height have been set to 20 by 20.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="20" height="20">
<param name="movie" value="xspf_player.swf?&player_mode=mini&counter=off&volume_btn=off" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="xspf_player.swf?&player_mode=mini&counter=off&volume_btn=off" quality="high" wmode="transparent"
type="application/x-shockwave-flash" width="20" height="20"></embed>
</object> |
Example B4

This final example shows that my player can indeed be reduced to just a
floating play button on your web page. Once again the player mode has been
set to mini, volume & counter removed, but this time we tack on skin_mode.
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"width="20" height="20">
<param name="movie" value="xspf_player.swf?&player_mode=mini&skin_mode=on&counter=off&volume_btn=off" />
<param name="quality" value="high" />
<param name="wmode" value="transparent">
<embed src="xspf_player.swf?&player_mode=mini&skin_mode=on&counter=off&volume_btn=off" quality="high" wmode="transparent"
type="application/x-shockwave-flash"width="20" height="20"></embed>
</object> |
|