<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!-- <!DOCTYPE Movie SYSTEM "dtd/RVML.dtd"> -->
<Movie version='6' width="600" height="300" rate='1' backgroundColor='white' compressed='Yes'
	xmlns="http://www.kineticfusion.org/RVML/2.0">
	<Title>
		Raw MP3 Example
	</Title>
	<Desc>
		Loads in an MP3 sound, stored in an external MP3 file, from a file repository
		and plays the sound once on the main timeline. 
	</Desc>
	<Repository repositoryType='File' repositoryBase="/temp" repositoryName="exampleResources">
		<Sound id='sound' format='MP3' resourceType='External' resourceLocation='Sound1.mp3' />
	</Repository>
	<Definitions>
		<!-- Elements for informational header -->
		<FontDefinition id='Arial' fontName='Arial' fontStyle='(bold)' fontRange='defined' />
		<EditField id='info' bounds='bounds(0, 0, 0, 0)'  fontID='Arial' fontSize='14.0' color='black' 
			properties='(systemFont, autosize)'>
			<InitialText>This is an MP3 sound sourced from an MP3 file</InitialText>
		</EditField>
	</Definitions>
	<Timeline>
		<Frame>
			<PlaceSound name='sound'>
				<SoundInfo uniquePlay='No' stopPlaying='No' loopCount='1' />
			</PlaceSound>

			<Place name='info' depth = "100" x="20" y="200"/>
		</Frame>
	</Timeline>
</Movie>
