mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-18 05:21:54 +00:00
Sample game for debugging.
This commit is contained in:
49
libsrc/ffdec_lib/testdata/debug_game/as2_scoring.html
vendored
Normal file
49
libsrc/ffdec_lib/testdata/debug_game/as2_scoring.html
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<title>as2_scoring</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<style type="text/css" media="screen">
|
||||
html, body { height:100%; background-color: #ffffff;}
|
||||
body { margin:0; padding:0; overflow:hidden; }
|
||||
#flashContent { width:100%; height:100%; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="flashContent">
|
||||
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400" id="as2_scoring" align="middle">
|
||||
<param name="movie" value="as2_scoring.swf" />
|
||||
<param name="quality" value="high" />
|
||||
<param name="bgcolor" value="#ffffff" />
|
||||
<param name="play" value="true" />
|
||||
<param name="loop" value="true" />
|
||||
<param name="wmode" value="window" />
|
||||
<param name="scale" value="showall" />
|
||||
<param name="menu" value="true" />
|
||||
<param name="devicefont" value="false" />
|
||||
<param name="salign" value="" />
|
||||
<param name="allowScriptAccess" value="sameDomain" />
|
||||
<!--[if !IE]>-->
|
||||
<object type="application/x-shockwave-flash" data="as2_scoring.swf" width="550" height="400">
|
||||
<param name="movie" value="as2_scoring.swf" />
|
||||
<param name="quality" value="high" />
|
||||
<param name="bgcolor" value="#ffffff" />
|
||||
<param name="play" value="true" />
|
||||
<param name="loop" value="true" />
|
||||
<param name="wmode" value="window" />
|
||||
<param name="scale" value="showall" />
|
||||
<param name="menu" value="true" />
|
||||
<param name="devicefont" value="false" />
|
||||
<param name="salign" value="" />
|
||||
<param name="allowScriptAccess" value="sameDomain" />
|
||||
<!--<![endif]-->
|
||||
<a href="http://www.adobe.com/go/getflash">
|
||||
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
|
||||
</a>
|
||||
<!--[if !IE]>-->
|
||||
</object>
|
||||
<!--<![endif]-->
|
||||
</object>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
libsrc/ffdec_lib/testdata/debug_game/as2_scoring.swf
vendored
Normal file
BIN
libsrc/ffdec_lib/testdata/debug_game/as2_scoring.swf
vendored
Normal file
Binary file not shown.
143
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/DOMDocument.xml
vendored
Normal file
143
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/DOMDocument.xml
vendored
Normal file
@@ -0,0 +1,143 @@
|
||||
<DOMDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" currentTimeline="1" xflVersion="2.2" creatorInfo="Adobe Flash Professional CS6" platform="Windows" versionInfo="Saved by Adobe Flash Windows 12.0 build 481" majorVersion="12" buildNumber="481" nextSceneIdentifier="2" playOptionsPlayLoop="false" playOptionsPlayPages="false" playOptionsPlayFrameActions="false">
|
||||
<fonts>
|
||||
<DOMFontItem name="Font 1" itemID="699366a0-000001e1" font="TimesNewRomanPSMT" size="0" id="1" sourceLastImported="1771267744" embedRanges="3"/>
|
||||
</fonts>
|
||||
<symbols>
|
||||
<Include href="Button1.xml" itemIcon="0" loadImmediate="false" itemID="699362e3-000001d5" lastModified="1771267090"/>
|
||||
<Include href="Button2.xml" itemIcon="0" loadImmediate="false" itemID="6993636a-000001dc" lastModified="1771267096"/>
|
||||
<Include href="Button3.xml" itemIcon="0" loadImmediate="false" itemID="699367b4-000001e5" lastModified="1771268063"/>
|
||||
</symbols>
|
||||
<timelines>
|
||||
<DOMTimeline name="Scene 1">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" duration="2" keyMode="9728">
|
||||
<Actionscript>
|
||||
<script><![CDATA[var delay = 1000;
|
||||
|
||||
function decreaseScore() {
|
||||
var score = parseInt(_root.inpScore.text);
|
||||
score--;
|
||||
if (score < 0) {
|
||||
score = 0;
|
||||
}
|
||||
_root.inpScore.text = score;
|
||||
|
||||
setTimeout(decreaseScore, delay);
|
||||
}
|
||||
|
||||
setTimeout(decreaseScore, delay);
|
||||
stop();]]></script>
|
||||
</Actionscript>
|
||||
<elements>
|
||||
<DOMSymbolInstance libraryItemName="Button1" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="92" ty="189"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point x="60" y="37.5"/>
|
||||
</transformationPoint>
|
||||
<Actionscript>
|
||||
<script><![CDATA[on(press) {
|
||||
var score = parseInt(_root.inpScore.text);
|
||||
score = score + 5;
|
||||
_root.inpScore.text = score;
|
||||
}]]></script>
|
||||
</Actionscript>
|
||||
</DOMSymbolInstance>
|
||||
<DOMSymbolInstance libraryItemName="Button2" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="327.95" ty="190.5"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point/>
|
||||
</transformationPoint>
|
||||
<Actionscript>
|
||||
<script><![CDATA[on(press) {
|
||||
var score = parseInt(_root.inpScore.text);
|
||||
score = score * 2;
|
||||
_root.inpScore.text = score;
|
||||
}]]></script>
|
||||
</Actionscript>
|
||||
</DOMSymbolInstance>
|
||||
<DOMStaticText fontRenderingMode="standard" width="57" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="204.95" ty="107"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Score:</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
<DOMDynamicText name="inpScore" fontRenderingMode="standard" width="102" height="31" lineType="multiline">
|
||||
<matrix>
|
||||
<Matrix tx="266.95" ty="103"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>0</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="25" bitmapSize="500" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMDynamicText>
|
||||
<DOMDynamicText fontRenderingMode="standard" width="125" height="34" lineType="multiline">
|
||||
<matrix>
|
||||
<Matrix tx="10" ty="24"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>AS1/2 test</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="25" bitmapSize="500" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMDynamicText>
|
||||
<DOMSymbolInstance libraryItemName="Button3" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="216.95" ty="294.5"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point/>
|
||||
</transformationPoint>
|
||||
<Actionscript>
|
||||
<script><![CDATA[on(press) {
|
||||
_root.inpScore.text = 0;
|
||||
}]]></script>
|
||||
</Actionscript>
|
||||
</DOMSymbolInstance>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timelines>
|
||||
<PrinterSettings/>
|
||||
<publishHistory>
|
||||
<PublishItem publishSize="8792" publishTime="1771271352"/>
|
||||
<PublishItem publishSize="8784" publishTime="1771269741"/>
|
||||
<PublishItem publishSize="8774" publishTime="1771269515"/>
|
||||
<PublishItem publishSize="8794" publishTime="1771269377" publishDebug="true"/>
|
||||
<PublishItem publishSize="8847" publishTime="1771268543" publishDebug="true"/>
|
||||
<PublishItem publishSize="8848" publishTime="1771268523" publishDebug="true"/>
|
||||
<PublishItem publishSize="8848" publishTime="1771268493" publishDebug="true"/>
|
||||
<PublishItem publishSize="8845" publishTime="1771268460" publishDebug="true"/>
|
||||
<PublishItem publishSize="8757" publishTime="1771268093" publishDebug="true"/>
|
||||
<PublishItem publishSize="8231" publishTime="1771267749" publishDebug="true"/>
|
||||
<PublishItem publishSize="7175" publishTime="1771267717" publishDebug="true"/>
|
||||
<PublishItem publishSize="7221" publishTime="1771267633" publishDebug="true"/>
|
||||
<PublishItem publishSize="7221" publishTime="1771267610" publishDebug="true"/>
|
||||
<PublishItem publishSize="7223" publishTime="1771267567" publishDebug="true"/>
|
||||
<PublishItem publishSize="7203" publishTime="1771267511" publishDebug="true"/>
|
||||
<PublishItem publishSize="7172" publishTime="1771267431" publishDebug="true"/>
|
||||
<PublishItem publishSize="7170" publishTime="1771267362" publishDebug="true"/>
|
||||
</publishHistory>
|
||||
</DOMDocument>
|
||||
102
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/Button1.xml
vendored
Normal file
102
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/Button1.xml
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Button1" itemID="699362e3-000001d5" symbolType="button" lastModified="1771267090">
|
||||
<timeline>
|
||||
<DOMTimeline name="Button1">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 2" color="#9933CC" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" duration="3" keyMode="9728">
|
||||
<elements>
|
||||
<DOMStaticText fontRenderingMode="standard" width="61" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="26" ty="24.2"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Plus 5</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#00FF00"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="1" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#00FFFF"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#0099FF"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
102
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/Button2.xml
vendored
Normal file
102
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/Button2.xml
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Button2" itemID="6993636a-000001dc" symbolType="button" lastModified="1771267096">
|
||||
<timeline>
|
||||
<DOMTimeline name="Button2">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 2" color="#9933CC" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" duration="3" keyMode="9728">
|
||||
<elements>
|
||||
<DOMStaticText fontRenderingMode="standard" width="93" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="12" ty="24.2"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Multiply 2</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#CCFF00"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="1" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#FFCC00"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#CC6600"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
102
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/Button3.xml
vendored
Normal file
102
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/Button3.xml
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Button3" itemID="699367b4-000001e5" symbolType="button" lastModified="1771268063">
|
||||
<timeline>
|
||||
<DOMTimeline name="Button3" currentFrame="2">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 2" color="#9933CC">
|
||||
<frames>
|
||||
<DOMFrame index="0" duration="3" keyMode="9728">
|
||||
<elements>
|
||||
<DOMStaticText fontRenderingMode="standard" width="93" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="12" ty="24.2"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Reset</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#FF0000"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="1" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#FF6633"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#CC0000"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
68
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/META-INF/metadata.xml
vendored
Normal file
68
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/META-INF/metadata.xml
vendored
Normal file
@@ -0,0 +1,68 @@
|
||||
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
|
||||
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27 ">
|
||||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:xmp="http://ns.adobe.com/xap/1.0/">
|
||||
<xmp:CreatorTool>Adobe Flash Professional CS6 - build 481</xmp:CreatorTool>
|
||||
<xmp:CreateDate>2026-02-16T10:31:42-08:00</xmp:CreateDate>
|
||||
<xmp:MetadataDate>2026-02-16T11:18:35-08:00</xmp:MetadataDate>
|
||||
<xmp:ModifyDate>2026-02-16T11:18:35-08:00</xmp:ModifyDate>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<dc:format>application/vnd.adobe.fla</dc:format>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
|
||||
xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#">
|
||||
<xmpMM:DerivedFrom rdf:parseType="Resource"/>
|
||||
<xmpMM:DocumentID>xmp.did:7FE581FA660BF11197008EF33C376745</xmpMM:DocumentID>
|
||||
<xmpMM:InstanceID>xmp.iid:9BDF39F36B0BF11197008EF33C376745</xmpMM:InstanceID>
|
||||
<xmpMM:OriginalDocumentID>xmp.did:7FE581FA660BF11197008EF33C376745</xmpMM:OriginalDocumentID>
|
||||
<xmpMM:History>
|
||||
<rdf:Seq>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<stEvt:action>created</stEvt:action>
|
||||
<stEvt:instanceID>xmp.iid:7FE581FA660BF11197008EF33C376745</stEvt:instanceID>
|
||||
<stEvt:when>2026-02-16T10:31:42-08:00</stEvt:when>
|
||||
<stEvt:softwareAgent>Adobe Flash Professional CS6 - build 481</stEvt:softwareAgent>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<stEvt:action>created</stEvt:action>
|
||||
<stEvt:instanceID>xmp.iid:99DF39F36B0BF11197008EF33C376745</stEvt:instanceID>
|
||||
<stEvt:when>2026-02-16T10:31:42-08:00</stEvt:when>
|
||||
<stEvt:softwareAgent>Adobe Flash Professional CS6 - build 481</stEvt:softwareAgent>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<stEvt:action>created</stEvt:action>
|
||||
<stEvt:instanceID>xmp.iid:9BDF39F36B0BF11197008EF33C376745</stEvt:instanceID>
|
||||
<stEvt:when>2026-02-16T10:31:42-08:00</stEvt:when>
|
||||
<stEvt:softwareAgent>Adobe Flash Professional CS6 - build 481</stEvt:softwareAgent>
|
||||
</rdf:li>
|
||||
</rdf:Seq>
|
||||
</xmpMM:History>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
</x:xmpmeta>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<?xpacket end="w"?>
|
||||
0
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/MobileSettings.xml
vendored
Normal file
0
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/MobileSettings.xml
vendored
Normal file
206
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/PublishSettings.xml
vendored
Normal file
206
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/PublishSettings.xml
vendored
Normal file
@@ -0,0 +1,206 @@
|
||||
<flash_profiles>
|
||||
<flash_profile version="1.0" name="Default" current="true">
|
||||
<PublishFormatProperties enabled="true">
|
||||
<defaultNames>1</defaultNames>
|
||||
<flash>1</flash>
|
||||
<projectorWin>0</projectorWin>
|
||||
<projectorMac>0</projectorMac>
|
||||
<html>1</html>
|
||||
<gif>0</gif>
|
||||
<jpeg>0</jpeg>
|
||||
<png>0</png>
|
||||
<qt>0</qt>
|
||||
<rnwk>0</rnwk>
|
||||
<swc>0</swc>
|
||||
<flashDefaultName>1</flashDefaultName>
|
||||
<projectorWinDefaultName>1</projectorWinDefaultName>
|
||||
<projectorMacDefaultName>1</projectorMacDefaultName>
|
||||
<htmlDefaultName>1</htmlDefaultName>
|
||||
<gifDefaultName>1</gifDefaultName>
|
||||
<jpegDefaultName>1</jpegDefaultName>
|
||||
<pngDefaultName>1</pngDefaultName>
|
||||
<qtDefaultName>1</qtDefaultName>
|
||||
<rnwkDefaultName>1</rnwkDefaultName>
|
||||
<swcDefaultName>1</swcDefaultName>
|
||||
<flashFileName>as2_scoring.swf</flashFileName>
|
||||
<projectorWinFileName>as2_scoring.exe</projectorWinFileName>
|
||||
<projectorMacFileName>as2_scoring.app</projectorMacFileName>
|
||||
<htmlFileName>as2_scoring.html</htmlFileName>
|
||||
<gifFileName>as2_scoring.gif</gifFileName>
|
||||
<jpegFileName>as2_scoring.jpg</jpegFileName>
|
||||
<pngFileName>as2_scoring.png</pngFileName>
|
||||
<qtFileName>as2_scoring.mov</qtFileName>
|
||||
<rnwkFileName>as2_scoring.smil</rnwkFileName>
|
||||
<swcFileName>as2_scoring.swc</swcFileName>
|
||||
</PublishFormatProperties>
|
||||
<PublishHtmlProperties enabled="true">
|
||||
<VersionDetectionIfAvailable>0</VersionDetectionIfAvailable>
|
||||
<VersionInfo>12,0,0,0;11,2,0,0;11,1,0,0;10,3,0,0;10,2,153,0;10,1,52,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1;</VersionInfo>
|
||||
<UsingDefaultContentFilename>1</UsingDefaultContentFilename>
|
||||
<UsingDefaultAlternateFilename>1</UsingDefaultAlternateFilename>
|
||||
<ContentFilename>as2_scoring.xfl_content.html</ContentFilename>
|
||||
<AlternateFilename>as2_scoring.xfl_alternate.html</AlternateFilename>
|
||||
<UsingOwnAlternateFile>0</UsingOwnAlternateFile>
|
||||
<OwnAlternateFilename></OwnAlternateFilename>
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<Align>0</Align>
|
||||
<Units>0</Units>
|
||||
<Loop>1</Loop>
|
||||
<StartPaused>0</StartPaused>
|
||||
<Scale>0</Scale>
|
||||
<HorizontalAlignment>1</HorizontalAlignment>
|
||||
<VerticalAlignment>1</VerticalAlignment>
|
||||
<Quality>4</Quality>
|
||||
<DeblockingFilter>0</DeblockingFilter>
|
||||
<WindowMode>0</WindowMode>
|
||||
<DisplayMenu>1</DisplayMenu>
|
||||
<DeviceFont>0</DeviceFont>
|
||||
<TemplateFileName>C:\Users\MyUser\AppData\Local\Adobe\Flash CS6\en_US\Configuration\HTML\Default.html</TemplateFileName>
|
||||
<showTagWarnMsg>1</showTagWarnMsg>
|
||||
</PublishHtmlProperties>
|
||||
<PublishFlashProperties enabled="true">
|
||||
<TopDown></TopDown>
|
||||
<FireFox></FireFox>
|
||||
<Report>0</Report>
|
||||
<Protect>0</Protect>
|
||||
<OmitTraceActions>0</OmitTraceActions>
|
||||
<Quality>80</Quality>
|
||||
<DeblockingFilter>0</DeblockingFilter>
|
||||
<StreamFormat>0</StreamFormat>
|
||||
<StreamCompress>7</StreamCompress>
|
||||
<EventFormat>0</EventFormat>
|
||||
<EventCompress>7</EventCompress>
|
||||
<OverrideSounds>0</OverrideSounds>
|
||||
<Version>15</Version>
|
||||
<ExternalPlayer>FlashPlayer11.2</ExternalPlayer>
|
||||
<ActionScriptVersion>2</ActionScriptVersion>
|
||||
<PackageExportFrame>1</PackageExportFrame>
|
||||
<PackagePaths></PackagePaths>
|
||||
<AS3PackagePaths>.</AS3PackagePaths>
|
||||
<AS3ConfigConst>CONFIG::FLASH_AUTHORING="true";</AS3ConfigConst>
|
||||
<DebuggingPermitted>0</DebuggingPermitted>
|
||||
<DebuggingPassword></DebuggingPassword>
|
||||
<CompressMovie>1</CompressMovie>
|
||||
<CompressionType>0</CompressionType>
|
||||
<InvisibleLayer>1</InvisibleLayer>
|
||||
<DeviceSound>0</DeviceSound>
|
||||
<StreamUse8kSampleRate>0</StreamUse8kSampleRate>
|
||||
<EventUse8kSampleRate>0</EventUse8kSampleRate>
|
||||
<UseNetwork>0</UseNetwork>
|
||||
<DocumentClass></DocumentClass>
|
||||
<AS3Strict>2</AS3Strict>
|
||||
<AS3Coach>4</AS3Coach>
|
||||
<AS3AutoDeclare>4096</AS3AutoDeclare>
|
||||
<AS3Dialect>AS3</AS3Dialect>
|
||||
<AS3ExportFrame>1</AS3ExportFrame>
|
||||
<AS3Optimize>1</AS3Optimize>
|
||||
<ExportSwc>0</ExportSwc>
|
||||
<ScriptStuckDelay>15</ScriptStuckDelay>
|
||||
<IncludeXMP>1</IncludeXMP>
|
||||
<HardwareAcceleration>0</HardwareAcceleration>
|
||||
<AS3Flags>4102</AS3Flags>
|
||||
<DefaultLibraryLinkage>rsl</DefaultLibraryLinkage>
|
||||
<RSLPreloaderMethod>wrap</RSLPreloaderMethod>
|
||||
<RSLPreloaderSWF>$(AppConfig)/ActionScript 3.0/rsls/loader_animation.swf</RSLPreloaderSWF>
|
||||
<LibraryPath>
|
||||
<library-path-entry>
|
||||
<swc-path>$(AppConfig)/ActionScript 3.0/libs</swc-path>
|
||||
<linkage>merge</linkage>
|
||||
</library-path-entry>
|
||||
<library-path-entry>
|
||||
<swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path>
|
||||
<linkage usesDefault="true">rsl</linkage>
|
||||
<rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz</rsl-url>
|
||||
<policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
|
||||
<rsl-url>textLayout_2.0.0.232.swz</rsl-url>
|
||||
</library-path-entry>
|
||||
</LibraryPath>
|
||||
<LibraryVersions>
|
||||
<library-version>
|
||||
<swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path>
|
||||
<feature name="tlfText" majorVersion="2" minorVersion="0" build="232"/>
|
||||
<rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz</rsl-url>
|
||||
<policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
|
||||
<rsl-url>textLayout_2.0.0.232.swz</rsl-url>
|
||||
</library-version>
|
||||
</LibraryVersions>
|
||||
</PublishFlashProperties>
|
||||
<PublishJpegProperties enabled="true">
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<Progressive>0</Progressive>
|
||||
<DPI>4718592</DPI>
|
||||
<Size>0</Size>
|
||||
<Quality>80</Quality>
|
||||
<MatchMovieDim>1</MatchMovieDim>
|
||||
</PublishJpegProperties>
|
||||
<PublishRNWKProperties enabled="true">
|
||||
<exportFlash>1</exportFlash>
|
||||
<flashBitRate>0</flashBitRate>
|
||||
<exportAudio>1</exportAudio>
|
||||
<audioFormat>0</audioFormat>
|
||||
<singleRateAudio>0</singleRateAudio>
|
||||
<realVideoRate>100000</realVideoRate>
|
||||
<speed28K>1</speed28K>
|
||||
<speed56K>1</speed56K>
|
||||
<speedSingleISDN>0</speedSingleISDN>
|
||||
<speedDualISDN>0</speedDualISDN>
|
||||
<speedCorporateLAN>0</speedCorporateLAN>
|
||||
<speed256K>0</speed256K>
|
||||
<speed384K>0</speed384K>
|
||||
<speed512K>0</speed512K>
|
||||
<exportSMIL>1</exportSMIL>
|
||||
</PublishRNWKProperties>
|
||||
<PublishGifProperties enabled="true">
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<Animated>0</Animated>
|
||||
<MatchMovieDim>1</MatchMovieDim>
|
||||
<Loop>1</Loop>
|
||||
<LoopCount></LoopCount>
|
||||
<OptimizeColors>1</OptimizeColors>
|
||||
<Interlace>0</Interlace>
|
||||
<Smooth>1</Smooth>
|
||||
<DitherSolids>0</DitherSolids>
|
||||
<RemoveGradients>0</RemoveGradients>
|
||||
<TransparentOption></TransparentOption>
|
||||
<TransparentAlpha>128</TransparentAlpha>
|
||||
<DitherOption></DitherOption>
|
||||
<PaletteOption></PaletteOption>
|
||||
<MaxColors>255</MaxColors>
|
||||
<PaletteName></PaletteName>
|
||||
</PublishGifProperties>
|
||||
<PublishPNGProperties enabled="true">
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<OptimizeColors>1</OptimizeColors>
|
||||
<Interlace>0</Interlace>
|
||||
<Transparent>0</Transparent>
|
||||
<Smooth>1</Smooth>
|
||||
<DitherSolids>0</DitherSolids>
|
||||
<RemoveGradients>0</RemoveGradients>
|
||||
<MatchMovieDim>1</MatchMovieDim>
|
||||
<DitherOption></DitherOption>
|
||||
<FilterOption></FilterOption>
|
||||
<PaletteOption></PaletteOption>
|
||||
<BitDepth>24-bit with Alpha</BitDepth>
|
||||
<MaxColors>255</MaxColors>
|
||||
<PaletteName></PaletteName>
|
||||
</PublishPNGProperties>
|
||||
<PublishQTProperties enabled="true">
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<MatchMovieDim>1</MatchMovieDim>
|
||||
<UseQTSoundCompression>0</UseQTSoundCompression>
|
||||
<AlphaOption></AlphaOption>
|
||||
<LayerOption></LayerOption>
|
||||
<QTSndSettings>00000000</QTSndSettings>
|
||||
<ControllerOption>0</ControllerOption>
|
||||
<Looping>0</Looping>
|
||||
<PausedAtStart>0</PausedAtStart>
|
||||
<PlayEveryFrame>0</PlayEveryFrame>
|
||||
<Flatten>1</Flatten>
|
||||
</PublishQTProperties>
|
||||
</flash_profile>
|
||||
</flash_profiles>
|
||||
1
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/as2_scoring.xfl
vendored
Normal file
1
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/as2_scoring.xfl
vendored
Normal file
@@ -0,0 +1 @@
|
||||
PROXY-CS5
|
||||
BIN
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/bin/SymDepend.cache
vendored
Normal file
BIN
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/bin/SymDepend.cache
vendored
Normal file
Binary file not shown.
49
libsrc/ffdec_lib/testdata/debug_game/as3_scoring.html
vendored
Normal file
49
libsrc/ffdec_lib/testdata/debug_game/as3_scoring.html
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
|
||||
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en">
|
||||
<head>
|
||||
<title>as3_scoring</title>
|
||||
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
||||
<style type="text/css" media="screen">
|
||||
html, body { height:100%; background-color: #ffffff;}
|
||||
body { margin:0; padding:0; overflow:hidden; }
|
||||
#flashContent { width:100%; height:100%; }
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div id="flashContent">
|
||||
<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="550" height="400" id="as3_scoring" align="middle">
|
||||
<param name="movie" value="as3_scoring.swf" />
|
||||
<param name="quality" value="high" />
|
||||
<param name="bgcolor" value="#ffffff" />
|
||||
<param name="play" value="true" />
|
||||
<param name="loop" value="true" />
|
||||
<param name="wmode" value="window" />
|
||||
<param name="scale" value="showall" />
|
||||
<param name="menu" value="true" />
|
||||
<param name="devicefont" value="false" />
|
||||
<param name="salign" value="" />
|
||||
<param name="allowScriptAccess" value="sameDomain" />
|
||||
<!--[if !IE]>-->
|
||||
<object type="application/x-shockwave-flash" data="as3_scoring.swf" width="550" height="400">
|
||||
<param name="movie" value="as3_scoring.swf" />
|
||||
<param name="quality" value="high" />
|
||||
<param name="bgcolor" value="#ffffff" />
|
||||
<param name="play" value="true" />
|
||||
<param name="loop" value="true" />
|
||||
<param name="wmode" value="window" />
|
||||
<param name="scale" value="showall" />
|
||||
<param name="menu" value="true" />
|
||||
<param name="devicefont" value="false" />
|
||||
<param name="salign" value="" />
|
||||
<param name="allowScriptAccess" value="sameDomain" />
|
||||
<!--<![endif]-->
|
||||
<a href="http://www.adobe.com/go/getflash">
|
||||
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
|
||||
</a>
|
||||
<!--[if !IE]>-->
|
||||
</object>
|
||||
<!--<![endif]-->
|
||||
</object>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
BIN
libsrc/ffdec_lib/testdata/debug_game/as3_scoring.swf
vendored
Normal file
BIN
libsrc/ffdec_lib/testdata/debug_game/as3_scoring.swf
vendored
Normal file
Binary file not shown.
158
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/DOMDocument.xml
vendored
Normal file
158
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/DOMDocument.xml
vendored
Normal file
@@ -0,0 +1,158 @@
|
||||
<DOMDocument xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" currentTimeline="1" xflVersion="2.2" creatorInfo="Adobe Flash Professional CS6" platform="Windows" versionInfo="Saved by Adobe Flash Windows 12.0 build 481" majorVersion="12" buildNumber="481" nextSceneIdentifier="2" playOptionsPlayLoop="false" playOptionsPlayPages="false" playOptionsPlayFrameActions="false">
|
||||
<fonts>
|
||||
<DOMFontItem name="Font 1" itemID="699366a0-000001e1" font="TimesNewRomanPSMT" size="0" id="1" sourceLastImported="1771267744" embedRanges="3"/>
|
||||
</fonts>
|
||||
<symbols>
|
||||
<Include href="Button1.xml" itemIcon="0" loadImmediate="false" itemID="699362e3-000001d5" lastModified="1771267090"/>
|
||||
<Include href="Button2.xml" itemIcon="0" loadImmediate="false" itemID="6993636a-000001dc" lastModified="1771267096"/>
|
||||
<Include href="Button3.xml" itemIcon="0" loadImmediate="false" itemID="699367b4-000001e5" lastModified="1771268063"/>
|
||||
</symbols>
|
||||
<timelines>
|
||||
<DOMTimeline name="Scene 1">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<Actionscript>
|
||||
<script><![CDATA[import flash.events.MouseEvent;
|
||||
|
||||
var delay:int = 1000;
|
||||
|
||||
function decreaseScore() {
|
||||
var score:int = getScore();
|
||||
score--;
|
||||
if (score < 0) {
|
||||
score = 0;
|
||||
}
|
||||
setScore(score);
|
||||
|
||||
setTimeout(decreaseScore, delay);
|
||||
}
|
||||
|
||||
function getScore():int {
|
||||
return parseInt(inpScore.text);
|
||||
}
|
||||
|
||||
function setScore(value:int):void {
|
||||
inpScore.text = String(value);
|
||||
}
|
||||
|
||||
setTimeout(decreaseScore, delay);
|
||||
|
||||
function onPlus5(e:MouseEvent):void {
|
||||
var score:int = getScore();
|
||||
score = score + 5;
|
||||
setScore(score);
|
||||
}
|
||||
|
||||
butPlus5.addEventListener(MouseEvent.CLICK, onPlus5);
|
||||
|
||||
function onMultiply2(e:MouseEvent):void {
|
||||
var score:int = getScore();
|
||||
score = score * 2;
|
||||
setScore(score);
|
||||
}
|
||||
|
||||
butMultiply2.addEventListener(MouseEvent.CLICK, onMultiply2);
|
||||
|
||||
function onReset(e:MouseEvent):void {
|
||||
setScore(0);
|
||||
}
|
||||
|
||||
butReset.addEventListener(MouseEvent.CLICK, onReset);]]></script>
|
||||
</Actionscript>
|
||||
<elements>
|
||||
<DOMSymbolInstance libraryItemName="Button1" name="butPlus5" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="92" ty="189"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point x="60" y="37.5"/>
|
||||
</transformationPoint>
|
||||
</DOMSymbolInstance>
|
||||
<DOMSymbolInstance libraryItemName="Button2" name="butMultiply2" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="327.95" ty="190.5"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point/>
|
||||
</transformationPoint>
|
||||
</DOMSymbolInstance>
|
||||
<DOMStaticText fontRenderingMode="standard" width="57" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="204.95" ty="107"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Score:</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
<DOMDynamicText name="inpScore" fontRenderingMode="standard" width="102" height="31" lineType="multiline">
|
||||
<matrix>
|
||||
<Matrix tx="266.95" ty="103"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>0</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="25" bitmapSize="500" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMDynamicText>
|
||||
<DOMDynamicText fontRenderingMode="standard" width="125" height="34" lineType="multiline">
|
||||
<matrix>
|
||||
<Matrix tx="10" ty="24"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>AS3 test</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="25" bitmapSize="500" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMDynamicText>
|
||||
<DOMSymbolInstance libraryItemName="Button3" name="butReset" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="216.95" ty="294.5"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point/>
|
||||
</transformationPoint>
|
||||
</DOMSymbolInstance>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timelines>
|
||||
<PrinterSettings/>
|
||||
<publishHistory>
|
||||
<PublishItem publishSize="9267" publishTime="1771270767"/>
|
||||
<PublishItem publishSize="9269" publishTime="1771270237"/>
|
||||
<PublishItem publishSize="9215" publishTime="1771270105"/>
|
||||
<PublishItem publishSize="9196" publishTime="1771269737"/>
|
||||
<PublishItem publishSize="9180" publishTime="1771269525"/>
|
||||
<PublishItem publishSize="9419" publishTime="1771269330" publishDebug="true"/>
|
||||
<PublishItem publishSize="9416" publishTime="1771269216" publishDebug="true"/>
|
||||
<PublishItem publishSize="8847" publishTime="1771268632" publishDebug="true"/>
|
||||
<PublishItem publishSize="8847" publishTime="1771268543" publishDebug="true"/>
|
||||
<PublishItem publishSize="8848" publishTime="1771268523" publishDebug="true"/>
|
||||
<PublishItem publishSize="8848" publishTime="1771268493" publishDebug="true"/>
|
||||
<PublishItem publishSize="8845" publishTime="1771268460" publishDebug="true"/>
|
||||
<PublishItem publishSize="8757" publishTime="1771268093" publishDebug="true"/>
|
||||
<PublishItem publishSize="8231" publishTime="1771267749" publishDebug="true"/>
|
||||
<PublishItem publishSize="7175" publishTime="1771267717" publishDebug="true"/>
|
||||
<PublishItem publishSize="7221" publishTime="1771267633" publishDebug="true"/>
|
||||
<PublishItem publishSize="7221" publishTime="1771267610" publishDebug="true"/>
|
||||
<PublishItem publishSize="7223" publishTime="1771267567" publishDebug="true"/>
|
||||
<PublishItem publishSize="7203" publishTime="1771267511" publishDebug="true"/>
|
||||
<PublishItem publishSize="7172" publishTime="1771267431" publishDebug="true"/>
|
||||
</publishHistory>
|
||||
</DOMDocument>
|
||||
102
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/Button1.xml
vendored
Normal file
102
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/Button1.xml
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Button1" itemID="699362e3-000001d5" symbolType="button" lastModified="1771267090">
|
||||
<timeline>
|
||||
<DOMTimeline name="Button1">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 2" color="#9933CC" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" duration="3" keyMode="9728">
|
||||
<elements>
|
||||
<DOMStaticText fontRenderingMode="standard" width="61" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="26" ty="24.2"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Plus 5</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#00FF00"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="1" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#00FFFF"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#0099FF"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
102
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/Button2.xml
vendored
Normal file
102
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/Button2.xml
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Button2" itemID="6993636a-000001dc" symbolType="button" lastModified="1771267096">
|
||||
<timeline>
|
||||
<DOMTimeline name="Button2">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 2" color="#9933CC" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" duration="3" keyMode="9728">
|
||||
<elements>
|
||||
<DOMStaticText fontRenderingMode="standard" width="93" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="12" ty="24.2"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Multiply 2</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#CCFF00"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="1" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#FFCC00"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#CC6600"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
102
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/Button3.xml
vendored
Normal file
102
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/Button3.xml
vendored
Normal file
@@ -0,0 +1,102 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="Button3" itemID="699367b4-000001e5" symbolType="button" lastModified="1771268063">
|
||||
<timeline>
|
||||
<DOMTimeline name="Button3" currentFrame="2">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 2" color="#9933CC">
|
||||
<frames>
|
||||
<DOMFrame index="0" duration="3" keyMode="9728">
|
||||
<elements>
|
||||
<DOMStaticText fontRenderingMode="standard" width="93" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="12" ty="24.2"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Reset</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#FF0000"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="1" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#FF6633"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#CC0000"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2400 1500|0 1500!0 1500|0 0!0 0|2400 0!2400 0|2400 1500"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
74
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/META-INF/metadata.xml
vendored
Normal file
74
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/META-INF/metadata.xml
vendored
Normal file
@@ -0,0 +1,74 @@
|
||||
<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
|
||||
<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.3-c011 66.145661, 2012/02/06-14:56:27 ">
|
||||
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:xmp="http://ns.adobe.com/xap/1.0/">
|
||||
<xmp:CreatorTool>Adobe Flash Professional CS6 - build 481</xmp:CreatorTool>
|
||||
<xmp:CreateDate>2026-02-16T10:31:42-08:00</xmp:CreateDate>
|
||||
<xmp:MetadataDate>2026-02-16T11:18:44-08:00</xmp:MetadataDate>
|
||||
<xmp:ModifyDate>2026-02-16T11:18:44-08:00</xmp:ModifyDate>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
<dc:format>application/vnd.adobe.fla</dc:format>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
|
||||
xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
|
||||
xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#">
|
||||
<xmpMM:DerivedFrom rdf:parseType="Resource">
|
||||
<stRef:instanceID>xmp.iid:7FE581FA660BF11197008EF33C376745</stRef:instanceID>
|
||||
<stRef:documentID>xmp.did:7FE581FA660BF11197008EF33C376745</stRef:documentID>
|
||||
<stRef:originalDocumentID>xmp.did:7FE581FA660BF11197008EF33C376745</stRef:originalDocumentID>
|
||||
</xmpMM:DerivedFrom>
|
||||
<xmpMM:DocumentID>xmp.did:EDF1CDD4690BF11197008EF33C376745</xmpMM:DocumentID>
|
||||
<xmpMM:InstanceID>xmp.iid:9DDF39F36B0BF11197008EF33C376745</xmpMM:InstanceID>
|
||||
<xmpMM:OriginalDocumentID>xmp.did:7FE581FA660BF11197008EF33C376745</xmpMM:OriginalDocumentID>
|
||||
<xmpMM:History>
|
||||
<rdf:Seq>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<stEvt:action>created</stEvt:action>
|
||||
<stEvt:instanceID>xmp.iid:7FE581FA660BF11197008EF33C376745</stEvt:instanceID>
|
||||
<stEvt:when>2026-02-16T10:31:42-08:00</stEvt:when>
|
||||
<stEvt:softwareAgent>Adobe Flash Professional CS6 - build 481</stEvt:softwareAgent>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<stEvt:action>saved</stEvt:action>
|
||||
<stEvt:instanceID>xmp.iid:EDF1CDD4690BF11197008EF33C376745</stEvt:instanceID>
|
||||
<stEvt:when>2026-02-16T11:06:12-08:00</stEvt:when>
|
||||
<stEvt:softwareAgent>Adobe Flash Professional CS6 - build 481</stEvt:softwareAgent>
|
||||
<stEvt:changed>/</stEvt:changed>
|
||||
</rdf:li>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<stEvt:action>created</stEvt:action>
|
||||
<stEvt:instanceID>xmp.iid:9DDF39F36B0BF11197008EF33C376745</stEvt:instanceID>
|
||||
<stEvt:when>2026-02-16T10:31:42-08:00</stEvt:when>
|
||||
<stEvt:softwareAgent>Adobe Flash Professional CS6 - build 481</stEvt:softwareAgent>
|
||||
</rdf:li>
|
||||
</rdf:Seq>
|
||||
</xmpMM:History>
|
||||
</rdf:Description>
|
||||
</rdf:RDF>
|
||||
</x:xmpmeta>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<?xpacket end="w"?>
|
||||
0
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/MobileSettings.xml
vendored
Normal file
0
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/MobileSettings.xml
vendored
Normal file
206
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/PublishSettings.xml
vendored
Normal file
206
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/PublishSettings.xml
vendored
Normal file
@@ -0,0 +1,206 @@
|
||||
<flash_profiles>
|
||||
<flash_profile version="1.0" name="Default" current="true">
|
||||
<PublishFormatProperties enabled="true">
|
||||
<defaultNames>1</defaultNames>
|
||||
<flash>1</flash>
|
||||
<projectorWin>0</projectorWin>
|
||||
<projectorMac>0</projectorMac>
|
||||
<html>1</html>
|
||||
<gif>0</gif>
|
||||
<jpeg>0</jpeg>
|
||||
<png>0</png>
|
||||
<qt>0</qt>
|
||||
<rnwk>0</rnwk>
|
||||
<swc>0</swc>
|
||||
<flashDefaultName>1</flashDefaultName>
|
||||
<projectorWinDefaultName>1</projectorWinDefaultName>
|
||||
<projectorMacDefaultName>1</projectorMacDefaultName>
|
||||
<htmlDefaultName>1</htmlDefaultName>
|
||||
<gifDefaultName>1</gifDefaultName>
|
||||
<jpegDefaultName>1</jpegDefaultName>
|
||||
<pngDefaultName>1</pngDefaultName>
|
||||
<qtDefaultName>1</qtDefaultName>
|
||||
<rnwkDefaultName>1</rnwkDefaultName>
|
||||
<swcDefaultName>1</swcDefaultName>
|
||||
<flashFileName>as3_scoring.swf</flashFileName>
|
||||
<projectorWinFileName>as3_scoring.exe</projectorWinFileName>
|
||||
<projectorMacFileName>as3_scoring.app</projectorMacFileName>
|
||||
<htmlFileName>as3_scoring.html</htmlFileName>
|
||||
<gifFileName>as3_scoring.gif</gifFileName>
|
||||
<jpegFileName>as3_scoring.jpg</jpegFileName>
|
||||
<pngFileName>as3_scoring.png</pngFileName>
|
||||
<qtFileName>as3_scoring.mov</qtFileName>
|
||||
<rnwkFileName>as3_scoring.smil</rnwkFileName>
|
||||
<swcFileName>as3_scoring.swc</swcFileName>
|
||||
</PublishFormatProperties>
|
||||
<PublishHtmlProperties enabled="true">
|
||||
<VersionDetectionIfAvailable>0</VersionDetectionIfAvailable>
|
||||
<VersionInfo>12,0,0,0;11,2,0,0;11,1,0,0;10,3,0,0;10,2,153,0;10,1,52,0;9,0,124,0;8,0,24,0;7,0,14,0;6,0,79,0;5,0,58,0;4,0,32,0;3,0,8,0;2,0,1,12;1,0,0,1;</VersionInfo>
|
||||
<UsingDefaultContentFilename>1</UsingDefaultContentFilename>
|
||||
<UsingDefaultAlternateFilename>1</UsingDefaultAlternateFilename>
|
||||
<ContentFilename>as3_scoring.xfl_content.html</ContentFilename>
|
||||
<AlternateFilename>as3_scoring.xfl_alternate.html</AlternateFilename>
|
||||
<UsingOwnAlternateFile>0</UsingOwnAlternateFile>
|
||||
<OwnAlternateFilename></OwnAlternateFilename>
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<Align>0</Align>
|
||||
<Units>0</Units>
|
||||
<Loop>1</Loop>
|
||||
<StartPaused>0</StartPaused>
|
||||
<Scale>0</Scale>
|
||||
<HorizontalAlignment>1</HorizontalAlignment>
|
||||
<VerticalAlignment>1</VerticalAlignment>
|
||||
<Quality>4</Quality>
|
||||
<DeblockingFilter>0</DeblockingFilter>
|
||||
<WindowMode>0</WindowMode>
|
||||
<DisplayMenu>1</DisplayMenu>
|
||||
<DeviceFont>0</DeviceFont>
|
||||
<TemplateFileName>C:\Users\MyUser\AppData\Local\Adobe\Flash CS6\en_US\Configuration\HTML\Default.html</TemplateFileName>
|
||||
<showTagWarnMsg>1</showTagWarnMsg>
|
||||
</PublishHtmlProperties>
|
||||
<PublishFlashProperties enabled="true">
|
||||
<TopDown></TopDown>
|
||||
<FireFox></FireFox>
|
||||
<Report>0</Report>
|
||||
<Protect>0</Protect>
|
||||
<OmitTraceActions>0</OmitTraceActions>
|
||||
<Quality>80</Quality>
|
||||
<DeblockingFilter>0</DeblockingFilter>
|
||||
<StreamFormat>0</StreamFormat>
|
||||
<StreamCompress>7</StreamCompress>
|
||||
<EventFormat>0</EventFormat>
|
||||
<EventCompress>7</EventCompress>
|
||||
<OverrideSounds>0</OverrideSounds>
|
||||
<Version>15</Version>
|
||||
<ExternalPlayer>FlashPlayer11.2</ExternalPlayer>
|
||||
<ActionScriptVersion>3</ActionScriptVersion>
|
||||
<PackageExportFrame>1</PackageExportFrame>
|
||||
<PackagePaths></PackagePaths>
|
||||
<AS3PackagePaths>.</AS3PackagePaths>
|
||||
<AS3ConfigConst>CONFIG::FLASH_AUTHORING="true";</AS3ConfigConst>
|
||||
<DebuggingPermitted>0</DebuggingPermitted>
|
||||
<DebuggingPassword></DebuggingPassword>
|
||||
<CompressMovie>1</CompressMovie>
|
||||
<CompressionType>0</CompressionType>
|
||||
<InvisibleLayer>1</InvisibleLayer>
|
||||
<DeviceSound>0</DeviceSound>
|
||||
<StreamUse8kSampleRate>0</StreamUse8kSampleRate>
|
||||
<EventUse8kSampleRate>0</EventUse8kSampleRate>
|
||||
<UseNetwork>0</UseNetwork>
|
||||
<DocumentClass></DocumentClass>
|
||||
<AS3Strict>2</AS3Strict>
|
||||
<AS3Coach>4</AS3Coach>
|
||||
<AS3AutoDeclare>4096</AS3AutoDeclare>
|
||||
<AS3Dialect>AS3</AS3Dialect>
|
||||
<AS3ExportFrame>1</AS3ExportFrame>
|
||||
<AS3Optimize>1</AS3Optimize>
|
||||
<ExportSwc>0</ExportSwc>
|
||||
<ScriptStuckDelay>15</ScriptStuckDelay>
|
||||
<IncludeXMP>1</IncludeXMP>
|
||||
<HardwareAcceleration>0</HardwareAcceleration>
|
||||
<AS3Flags>4102</AS3Flags>
|
||||
<DefaultLibraryLinkage>rsl</DefaultLibraryLinkage>
|
||||
<RSLPreloaderMethod>wrap</RSLPreloaderMethod>
|
||||
<RSLPreloaderSWF>$(AppConfig)/ActionScript 3.0/rsls/loader_animation.swf</RSLPreloaderSWF>
|
||||
<LibraryPath>
|
||||
<library-path-entry>
|
||||
<swc-path>$(AppConfig)/ActionScript 3.0/libs</swc-path>
|
||||
<linkage>merge</linkage>
|
||||
</library-path-entry>
|
||||
<library-path-entry>
|
||||
<swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path>
|
||||
<linkage usesDefault="true">rsl</linkage>
|
||||
<rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz</rsl-url>
|
||||
<policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
|
||||
<rsl-url>textLayout_2.0.0.232.swz</rsl-url>
|
||||
</library-path-entry>
|
||||
</LibraryPath>
|
||||
<LibraryVersions>
|
||||
<library-version>
|
||||
<swc-path>$(AppConfig)/ActionScript 3.0/libs/11.0/textLayout.swc</swc-path>
|
||||
<feature name="tlfText" majorVersion="2" minorVersion="0" build="232"/>
|
||||
<rsl-url>http://fpdownload.adobe.com/pub/swz/tlf/2.0.0.232/textLayout_2.0.0.232.swz</rsl-url>
|
||||
<policy-file-url>http://fpdownload.adobe.com/pub/swz/crossdomain.xml</policy-file-url>
|
||||
<rsl-url>textLayout_2.0.0.232.swz</rsl-url>
|
||||
</library-version>
|
||||
</LibraryVersions>
|
||||
</PublishFlashProperties>
|
||||
<PublishJpegProperties enabled="true">
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<Progressive>0</Progressive>
|
||||
<DPI>4718592</DPI>
|
||||
<Size>0</Size>
|
||||
<Quality>80</Quality>
|
||||
<MatchMovieDim>1</MatchMovieDim>
|
||||
</PublishJpegProperties>
|
||||
<PublishRNWKProperties enabled="true">
|
||||
<exportFlash>1</exportFlash>
|
||||
<flashBitRate>0</flashBitRate>
|
||||
<exportAudio>1</exportAudio>
|
||||
<audioFormat>0</audioFormat>
|
||||
<singleRateAudio>0</singleRateAudio>
|
||||
<realVideoRate>100000</realVideoRate>
|
||||
<speed28K>1</speed28K>
|
||||
<speed56K>1</speed56K>
|
||||
<speedSingleISDN>0</speedSingleISDN>
|
||||
<speedDualISDN>0</speedDualISDN>
|
||||
<speedCorporateLAN>0</speedCorporateLAN>
|
||||
<speed256K>0</speed256K>
|
||||
<speed384K>0</speed384K>
|
||||
<speed512K>0</speed512K>
|
||||
<exportSMIL>1</exportSMIL>
|
||||
</PublishRNWKProperties>
|
||||
<PublishGifProperties enabled="true">
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<Animated>0</Animated>
|
||||
<MatchMovieDim>1</MatchMovieDim>
|
||||
<Loop>1</Loop>
|
||||
<LoopCount></LoopCount>
|
||||
<OptimizeColors>1</OptimizeColors>
|
||||
<Interlace>0</Interlace>
|
||||
<Smooth>1</Smooth>
|
||||
<DitherSolids>0</DitherSolids>
|
||||
<RemoveGradients>0</RemoveGradients>
|
||||
<TransparentOption></TransparentOption>
|
||||
<TransparentAlpha>128</TransparentAlpha>
|
||||
<DitherOption></DitherOption>
|
||||
<PaletteOption></PaletteOption>
|
||||
<MaxColors>255</MaxColors>
|
||||
<PaletteName></PaletteName>
|
||||
</PublishGifProperties>
|
||||
<PublishPNGProperties enabled="true">
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<OptimizeColors>1</OptimizeColors>
|
||||
<Interlace>0</Interlace>
|
||||
<Transparent>0</Transparent>
|
||||
<Smooth>1</Smooth>
|
||||
<DitherSolids>0</DitherSolids>
|
||||
<RemoveGradients>0</RemoveGradients>
|
||||
<MatchMovieDim>1</MatchMovieDim>
|
||||
<DitherOption></DitherOption>
|
||||
<FilterOption></FilterOption>
|
||||
<PaletteOption></PaletteOption>
|
||||
<BitDepth>24-bit with Alpha</BitDepth>
|
||||
<MaxColors>255</MaxColors>
|
||||
<PaletteName></PaletteName>
|
||||
</PublishPNGProperties>
|
||||
<PublishQTProperties enabled="true">
|
||||
<Width>550</Width>
|
||||
<Height>400</Height>
|
||||
<MatchMovieDim>1</MatchMovieDim>
|
||||
<UseQTSoundCompression>0</UseQTSoundCompression>
|
||||
<AlphaOption></AlphaOption>
|
||||
<LayerOption></LayerOption>
|
||||
<QTSndSettings>00000000</QTSndSettings>
|
||||
<ControllerOption>0</ControllerOption>
|
||||
<Looping>0</Looping>
|
||||
<PausedAtStart>0</PausedAtStart>
|
||||
<PlayEveryFrame>0</PlayEveryFrame>
|
||||
<Flatten>1</Flatten>
|
||||
</PublishQTProperties>
|
||||
</flash_profile>
|
||||
</flash_profiles>
|
||||
1
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/as3_scoring.xfl
vendored
Normal file
1
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/as3_scoring.xfl
vendored
Normal file
@@ -0,0 +1 @@
|
||||
PROXY-CS5
|
||||
BIN
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/bin/SymDepend.cache
vendored
Normal file
BIN
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/bin/SymDepend.cache
vendored
Normal file
Binary file not shown.
Reference in New Issue
Block a user