<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<!-- <!DOCTYPE Movie SYSTEM "dtd/RVML.dtd"> -->
<Movie version='5' width='600' height='500' rate='41' backgroundColor='white' compressed='No'
    xmlns="http://www.kineticfusion.org/RVML/2.0">
    <Title>
        HTML Support in EditFields
    </Title>
    <Desc>
        Illustrates how to use both static and dynamic HTML in EditFields. Non-system fonts can
        also be used as HTML fonts however they must be explicitly included in the output movie 
        using the forceOutput attribute and all fonts specified in the HTML override the
        default font resource assigned to the EditField.
    </Desc>
    <Repository repositoryType='File' repositoryBase='/temp' repositoryName='exampleResources'>

        <Font id='Arial' fontName='Arial'  resourceLocation="Arial.swf" fontRange='all' />
        <!-- Force this font out as it's not referenced but it is used in the dynamic assignment -->
        <Font id='standard_07_63' fontName='standard 07_63' resourceLocation="standard 07_63.swf"
            fontRange='all' forceOutput="Yes"/>
    </Repository>

    <Definitions>
        <!-- Note all 4 fields below have their primary font set to Arial -->
        <EditField id='html1' bounds='bounds(-2.0, -2.0, 349.75, 16.0)' fieldName='' 
            fontID='Arial' fontSize='10.0'  color='grey' 
            properties='(html, systemFont, multiLine)'>
            <InitialText><![CDATA[<P ALIGN="LEFT"><FONT FACE="Verdana" SIZE="10" COLOR="#ff0000"><B>Systemfont Verdana Bold</B></FONT></P>]]></InitialText>
        </EditField>
        
        <EditField id='html2' bounds='bounds(-2.0, -2.0, 349.75, 16.0)' fieldName='' 
            fontID='Arial' fontSize='10.0'  color='grey'
            properties='(html, multiLine)'>
            <InitialText><![CDATA[<P ALIGN="LEFT"><FONT FACE="standard 07_63" SIZE="10" COLOR="#FF0000">Builtin = standard -6_63</FONT></P>]]></InitialText>
        </EditField>
        
        <EditField id='html3' bounds='bounds(-2.0, -2.0, 349.75, 16.0)' fieldName='text' 
            fontID='Arial' fontSize='10.0'  color='grey' properties='(html, multiLine)'/>

        <EditField id='html4' bounds='bounds(-2.0, -2.0, 349.75, 16.0)' fieldName='text2' 
            fontID='Arial' fontSize='10.0'  color='grey' properties='(html, systemFont, multiLine)'/>
     </Definitions>
    
    <Timeline>
         <Frame>
            <Place name='html1' depth='2' x='200.0' y='100.0' />
            <Place name='html2' depth='3' x='200.0' y='200.0' />
            <Place name='html3' depth='4'>
                <Transform scaleY='1' translateX='200.0' translateY='300.0' />
            </Place>
            <Place name='html4' depth='5' x='200.0' y='400.0' />
            <FrameActions><![CDATA[
    text='<P ALIGN="LEFT"><FONT FACE="standard 07_63" SIZE="10" COLOR="#666666">Dynamic standard 07_63 Builtin</FONT></P>';
    text2='<P ALIGN="LEFT"><FONT FACE="Times New Roman" SIZE="10" COLOR="#666666"><B>Dynamic Times New Roman -System</B></FONT></P>';
    ]]></FrameActions>

        </Frame>
    </Timeline>
</Movie>