<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!-- <!DOCTYPE Movie SYSTEM "dtd/RVML.dtd"> -->
<Movie version='6' rate='12' width="400" height="300" backgroundColor='white' compressed='Yes'
    xmlns="http://www.kineticfusion.org/RVML/2.0">
    <Title>
        ADPCM Sound Example
    </Title>
    <Desc>
        Loads in an ADPCM sound, stored in an SWF movie, from an absolute file location
        and plays the sound once on the main timeline. 
    </Desc>
    <Repository repositoryType='AbsoluteFile'>
        <Sound id='sound' format='ADPCM' resourceType='SWF' 
                    resourceLocation='/temp/exampleResources/sounds/pingADPCM.swf' />
    </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='10.0' color='black' 
            properties='(systemFont, autosize)'>
            <InitialText>This is a sound source from an ADPCM sound sourced from an SWF 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>