1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104
|
<?xml version="1.0" encoding="UTF-8"?>
<movie width="450" height="270" framerate="15">
<background color="#dddddd"/>
<library>
<clip import="classes.swf"/>
<clip id="jpg" import="library/testjpg.jpg"/>
<clip id="png" import="library/testpng.png"/>
<clip id="png-alpha" import="library/testpng-alpha.png"/>
<clip id="png24" import="library/testpng24.png"/>
<clip id="png8" import="library/testpng8.png"/>
<clip id="jpega" import="library/testjpg.jpg" mask="library/testgradient.png"/>
<clip id="swf" class="org.swfmill.Foo" import="library/star.swf"/>
</library>
<font id="vera" import="library/vera.ttf"
glyphs="abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890 ÄÖÜäöüß .:!&"+=?-"/>
<frame>
<place name="jpg" id="jpg" x="10" y="10" depth="1" scale="0.5"/>
<textfield id="jpgtext"
width="60" height="15"
font="vera" size="12"
text="JPG"
/>
<place id="jpgtext" x="10" y="60" depth="2"/>
<place name="png" id="png" x="80" y="10" depth="3" scale="0.5"/>
<textfield id="pngtext"
width="60" height="15"
font="vera" size="12"
text="PNG"
/>
<place id="pngtext" x="80" y="60" depth="4"/>
<place id="png-alpha" x="150" y="10" depth="5" scale="0.5"/>
<textfield id="pngatext"
width="150" height="15"
font="vera" size="12"
text="PNG(A)"
/>
<place id="pngatext" x="150" y="60" depth="6"/>
<place id="png24" x="220" y="10" depth="7" scale="0.5"/>
<textfield id="png24text"
width="70" height="15"
font="vera" size="12"
text="PNG24"
/>
<place id="png24text" x="220" y="60" depth="8"/>
<place id="png8" x="290" y="10" depth="9" scale="0.5"/>
<textfield id="png8text"
width="70" height="15"
font="vera" size="12"
text="PNG8"
/>
<place id="png8text" x="290" y="60" depth="10"/>
<place id="jpega" x="360" y="10" depth="11" scale="0.5"/>
<textfield id="jpegatext"
width="70" height="15"
font="vera" size="12"
text="JPEG+A"
/>
<place id="jpegatext" x="360" y="60" depth="12"/>
<place id="swf" x="0" y="80" depth="19" scale="10" name="star">
<string name="text2" value="Hello World!"/>
</place>
<set name="star" member="text" value="Hello World!"/>
<textfield id="swftext"
width="150" height="15"
font="vera" size="12"
text="SWF"
/>
<place id="swftext" x="10" y="140" depth="20"/>
<textfield id="text"
width="110" height="50"
font="vera" size="12"
isHTML="true"
text="the quick brown fox jumps over the "lazy" dog"
></textfield>
<place id="text" x="100" y="85" depth="21"/>
<textfield id="texttext"
width="100" height="15"
font="vera" size="12"
text="Font"
/>
<place id="texttext" x="100" y="140" depth="22"/>
<textfield id="scriptout"
width="200" height="70"
font="vera" size="10"
text=""
/>
<place id="scriptout" name="scriptout" x="10" y="180" depth="23"/>
<call object="Main" method="main"/>
</frame>
<html-wrapper name="output.html" swf="output.swf"/>
</movie>
|