<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!-- <!DOCTYPE Movie SYSTEM "dtd/RVML.dtd"> -->
<Movie version='6' width='600' height='400' rate='1' backgroundColor='white' compressed='No'
    xmlns="http://www.kineticfusion.org/RVML/2.0">
    <Title>
        Import and Export a Symbol
    </Title>
    <Desc>
        Illustrates how to import and use a symbol at runtime from another movie. The imported
        symbol is made available to other movies by exporting it.
    </Desc>
        <Definitions>
        <FontDefinition id='Arial' fontName='Arial' fontStyle='(bold)' fontRange='defined' />
        <EditField id='exportField' bounds='bounds(0,0,0,0)' fieldName='' 
            fontID='Arial' fontSize='12.0' alignment='left' charLimit='0' color='black' 
            properties='(systemFont, autosize)'>
            <InitialText>This symbol is imported and exported from this Movie as &apos;CircleAndText&apos;</InitialText>
        </EditField>
        </Definitions>
        <ImportSymbols>
            <ImportSymbol id="CircleAndText" libraryName="ExportSymbol.swf" importName="CircleAndText"/>
        </ImportSymbols>
        <ExportSymbols>
            <ExportSymbol name="CircleAndText" exportName="exportTest"/>
        </ExportSymbols>
        <Timeline>
            <Frame >
                <Place name="CircleAndText" depth="1" x="300" y="20"/>
                <Place name="exportField" depth="2" x="50" y="200"/>
            </Frame>
        </Timeline>
    </Movie>