﻿<SoundPlayer>
	<SoundPlayerSettings>
		<Volume>10</Volume>								//volume of the player in the range 1-10
	</SoundPlayerSettings>
	<TextButtonSettings>
		<HorizontalPosition>4</HorizontalPosition>		//number of pixels After sound visualizer
		<VerticalPosition>2.5</VerticalPosition>		//Displacement from top of the BarHeight, can be negative
														//this property is helpful to align bottoms of visualizer and text button
		<FontSize>20</FontSize>							//font size for text button
		<TextColor>0xFFFFFF</TextColor>					//hex value for text default color
		<EffectColor>0x8CEAF4</EffectColor>				//hex value for text roll over color
		<EffectSpeed>30</EffectSpeed>					//speed of text roll over effect
	</TextButtonSettings>						
	<VisualizerSettings>
		<BarTopColor>0xEFEFEF</BarTopColor>				//top gradient color of bars
		<BarCenterColor>0xD6D6D6</BarCenterColor>		//middle gradient color of bars
		<BarBottomColor>0xEFEFEF</BarBottomColor>		//bottom gradient color of bars
		<BarWidth>1</BarWidth>							//width of individual bars
		<BarHeight>30</BarHeight>						//height of individual bars
		<NumberOfBars>50</NumberOfBars>					//total number of bars in the visualizer
		<BarsDistance>0</BarsDistance>					//distance between bars
		<VisualizerMinSpeed>8</VisualizerMinSpeed>		//minimum speed of all bars to animate, the lesser the faster
														//Min and Max variables define the range within which a random value will be selected
														//if you don't want the speed of bars to be random then use same value for Min and Max
		<VisualizerMaxSpeed>12</VisualizerMaxSpeed>		//maximum speed of all bars to animate, the lesser the faster

	</VisualizerSettings>
	<PlayList>
		<Song id="1">
			<Path>simple_flash_mp3_xml_player/data/song1.mp3</Path>					//path of sound file
		</Song>
		<Song id="2">
			<Path>simple_flash_mp3_xml_player/data/song2.mp3</Path>
		</Song>
		<Song id="3">
			<Path>simple_flash_mp3_xml_player/data/song3.mp3</Path>
		</Song>
	</PlayList>
</SoundPlayer>
