mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-17 06:01:54 +00:00
Added: Debugger - Remove watch
Added: Debugger - List of watches Added: Debugger - Show flag of watch type (read/write) Fixed: Debugger - Threading issues with multiple SWFs Fixed: Debugger - Reading variables on 64bit flash players (like in browsers) Enhanced debug game test SWFs
This commit is contained in:
BIN
libsrc/ffdec_lib/testdata/debug_game/as2_scoring.swd
vendored
Normal file
BIN
libsrc/ffdec_lib/testdata/debug_game/as2_scoring.swd
vendored
Normal file
Binary file not shown.
BIN
libsrc/ffdec_lib/testdata/debug_game/as2_scoring.swf
vendored
BIN
libsrc/ffdec_lib/testdata/debug_game/as2_scoring.swf
vendored
Binary file not shown.
@@ -6,6 +6,8 @@
|
||||
<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"/>
|
||||
<Include href="ButtonDown.xml" itemIcon="0" loadImmediate="false" itemID="6999ec93-000001e6" lastModified="1771695532"/>
|
||||
<Include href="ButtonUp.xml" itemIcon="0" loadImmediate="false" itemID="6999ec8b-000001e1" lastModified="1771695510"/>
|
||||
</symbols>
|
||||
<timelines>
|
||||
<DOMTimeline name="Scene 1">
|
||||
@@ -43,6 +45,7 @@ stop();]]></script>
|
||||
var score = parseInt(_root.inpScore.text);
|
||||
score = score + 5;
|
||||
_root.inpScore.text = score;
|
||||
trace("plus 5");
|
||||
}]]></script>
|
||||
</Actionscript>
|
||||
</DOMSymbolInstance>
|
||||
@@ -58,6 +61,7 @@ stop();]]></script>
|
||||
var score = parseInt(_root.inpScore.text);
|
||||
score = score * 2;
|
||||
_root.inpScore.text = score;
|
||||
trace("multiply 2");
|
||||
}]]></script>
|
||||
</Actionscript>
|
||||
</DOMSymbolInstance>
|
||||
@@ -100,7 +104,7 @@ stop();]]></script>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMDynamicText>
|
||||
<DOMSymbolInstance libraryItemName="Button3" symbolType="button">
|
||||
<DOMSymbolInstance libraryItemName="Button3" selected="true" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="216.95" ty="294.5"/>
|
||||
</matrix>
|
||||
@@ -110,6 +114,48 @@ stop();]]></script>
|
||||
<Actionscript>
|
||||
<script><![CDATA[on(press) {
|
||||
_root.inpScore.text = 0;
|
||||
trace("reset");
|
||||
}]]></script>
|
||||
</Actionscript>
|
||||
</DOMSymbolInstance>
|
||||
<DOMStaticText fontRenderingMode="standard" width="51" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="474.2" ty="12"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Speed</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
<DOMSymbolInstance libraryItemName="ButtonUp" name="btnSpeedUp" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="450" ty="11.3"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point x="6.6" y="5.6"/>
|
||||
</transformationPoint>
|
||||
<Actionscript>
|
||||
<script><![CDATA[on(press) {
|
||||
_root.delay = Math.round(_root.delay / 1.1);
|
||||
trace("speed up");
|
||||
}]]></script>
|
||||
</Actionscript>
|
||||
</DOMSymbolInstance>
|
||||
<DOMSymbolInstance libraryItemName="ButtonDown" name="btnSpeedDown" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="450" ty="26"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point x="6.6" y="5.6"/>
|
||||
</transformationPoint>
|
||||
<Actionscript>
|
||||
<script><![CDATA[on(press) {
|
||||
_root.delay = Math.round(_root.delay * 1.1);
|
||||
trace("speed down");
|
||||
}]]></script>
|
||||
</Actionscript>
|
||||
</DOMSymbolInstance>
|
||||
@@ -122,6 +168,10 @@ stop();]]></script>
|
||||
</timelines>
|
||||
<PrinterSettings/>
|
||||
<publishHistory>
|
||||
<PublishItem publishSize="9272" publishTime="1771699758"/>
|
||||
<PublishItem publishSize="9288" publishTime="1771695673" publishDebug="true"/>
|
||||
<PublishItem publishSize="9287" publishTime="1771695604" publishDebug="true"/>
|
||||
<PublishItem publishSize="9303" publishTime="1771695543" publishDebug="true"/>
|
||||
<PublishItem publishSize="8792" publishTime="1771271352"/>
|
||||
<PublishItem publishSize="8784" publishTime="1771269741"/>
|
||||
<PublishItem publishSize="8774" publishTime="1771269515"/>
|
||||
@@ -138,6 +188,5 @@ stop();]]></script>
|
||||
<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>
|
||||
90
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/ButtonDown.xml
vendored
Normal file
90
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/ButtonDown.xml
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="ButtonDown" itemID="6999ec93-000001e6" symbolType="button" lastModified="1771695532">
|
||||
<timeline>
|
||||
<DOMTimeline name="ButtonDown" currentFrame="2">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" 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 fillStyle0="1" strokeStyle="1" edges="!135 225S5|265 0!265 0|0 0!0 0|135 225"/>
|
||||
<Edge cubics="!265 0(;265,0 0,0 0,0q265 0 0 0);"/>
|
||||
<Edge cubics="!0 0(;0,0 135,225 135,225q0 0 135 225);"/>
|
||||
<Edge cubics="!135 225(;135,225 265,0 265,0q135 225 265 0);"/>
|
||||
</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 fillStyle0="1" strokeStyle="1" edges="!265 0|0 0!0 0|135 225!135 225|265 0"/>
|
||||
<Edge cubics="!265 0(;265,0 0,0 0,0q265 0 0 0);"/>
|
||||
<Edge cubics="!0 0(;0,0 135,225 135,225q0 0 135 225);"/>
|
||||
<Edge cubics="!135 225(;135,225 265,0 265,0q135 225 265 0);"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#0000FF"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle0="1" strokeStyle="1" edges="!265 0|0 0!0 0|135 225!135 225|265 0"/>
|
||||
<Edge cubics="!265 0(;265,0 0,0 0,0q265 0 0 0);"/>
|
||||
<Edge cubics="!0 0(;0,0 135,225 135,225q0 0 135 225);"/>
|
||||
<Edge cubics="!135 225(;135,225 265,0 265,0q135 225 265 0);"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
90
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/ButtonUp.xml
vendored
Normal file
90
libsrc/ffdec_lib/testdata/debug_game/as2_scoring/LIBRARY/ButtonUp.xml
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="ButtonUp" itemID="6999ec8b-000001e1" symbolType="button" lastModified="1771695510">
|
||||
<timeline>
|
||||
<DOMTimeline name="ButtonUp" currentFrame="2">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" 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 fillStyle0="1" strokeStyle="1" edges="!130 0S5|0 225!0 225|265 225!265 225|130 0"/>
|
||||
<Edge cubics="!0 225(;0,225 265,225 265,225q0 225 265 225);"/>
|
||||
<Edge cubics="!265 225(;265,225 130,0 130,0q265 225 130 0);"/>
|
||||
<Edge cubics="!130 0(;130,0 0,225 0,225q130 0 0 225);"/>
|
||||
</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 fillStyle0="1" strokeStyle="1" edges="!0 225|265 225!265 225|130 0!130 0|0 225"/>
|
||||
<Edge cubics="!0 225(;0,225 265,225 265,225q0 225 265 225);"/>
|
||||
<Edge cubics="!265 225(;265,225 130,0 130,0q265 225 130 0);"/>
|
||||
<Edge cubics="!130 0(;130,0 0,225 0,225q130 0 0 225);"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#0000FF"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle0="1" strokeStyle="1" edges="!265 225|130 0!130 0|0 225!0 225|265 225"/>
|
||||
<Edge cubics="!0 225(;0,225 265,225 265,225q0 225 265 225);"/>
|
||||
<Edge cubics="!265 225(;265,225 130,0 130,0q265 225 130 0);"/>
|
||||
<Edge cubics="!130 0(;130,0 0,225 0,225q130 0 0 225);"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
@@ -5,8 +5,8 @@
|
||||
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>
|
||||
<xmp:MetadataDate>2026-02-21T09:35:10-08:00</xmp:MetadataDate>
|
||||
<xmp:ModifyDate>2026-02-21T09:35:10-08:00</xmp:ModifyDate>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
@@ -17,7 +17,7 @@
|
||||
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:InstanceID>xmp.iid:377DE8AB4B0FF111A0D3B09FD2F43FD4</xmpMM:InstanceID>
|
||||
<xmpMM:OriginalDocumentID>xmp.did:7FE581FA660BF11197008EF33C376745</xmpMM:OriginalDocumentID>
|
||||
<xmpMM:History>
|
||||
<rdf:Seq>
|
||||
@@ -39,6 +39,12 @@
|
||||
<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:377DE8AB4B0FF111A0D3B09FD2F43FD4</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>
|
||||
|
||||
Binary file not shown.
BIN
libsrc/ffdec_lib/testdata/debug_game/as3_scoring.swf
vendored
BIN
libsrc/ffdec_lib/testdata/debug_game/as3_scoring.swf
vendored
Binary file not shown.
@@ -6,6 +6,8 @@
|
||||
<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"/>
|
||||
<Include href="ButtonDown.xml" itemIcon="0" loadImmediate="false" itemID="6999ec93-000001e6" lastModified="1771695532"/>
|
||||
<Include href="ButtonUp.xml" itemIcon="0" loadImmediate="false" itemID="6999ec8b-000001e1" lastModified="1771695510"/>
|
||||
</symbols>
|
||||
<timelines>
|
||||
<DOMTimeline name="Scene 1">
|
||||
@@ -42,7 +44,8 @@ setTimeout(decreaseScore, delay);
|
||||
function onPlus5(e:MouseEvent):void {
|
||||
var score:int = getScore();
|
||||
score = score + 5;
|
||||
setScore(score);
|
||||
setScore(score);
|
||||
trace("plus 5");
|
||||
}
|
||||
|
||||
butPlus5.addEventListener(MouseEvent.CLICK, onPlus5);
|
||||
@@ -51,15 +54,32 @@ function onMultiply2(e:MouseEvent):void {
|
||||
var score:int = getScore();
|
||||
score = score * 2;
|
||||
setScore(score);
|
||||
trace("multiply 2");
|
||||
}
|
||||
|
||||
butMultiply2.addEventListener(MouseEvent.CLICK, onMultiply2);
|
||||
|
||||
function onReset(e:MouseEvent):void {
|
||||
setScore(0);
|
||||
trace("reset");
|
||||
}
|
||||
|
||||
butReset.addEventListener(MouseEvent.CLICK, onReset);]]></script>
|
||||
butReset.addEventListener(MouseEvent.CLICK, onReset);
|
||||
|
||||
function onSpeedUp(e:MouseEvent): void {
|
||||
delay = Math.round(delay / 1.1);
|
||||
trace("speed up");
|
||||
}
|
||||
|
||||
btnSpeedUp.addEventListener(MouseEvent.CLICK, onSpeedUp);
|
||||
|
||||
function onSpeedDown(e:MouseEvent): void {
|
||||
delay = Math.round(delay * 1.1);
|
||||
trace("speed down");
|
||||
}
|
||||
|
||||
btnSpeedDown.addEventListener(MouseEvent.CLICK, onSpeedDown);
|
||||
]]></script>
|
||||
</Actionscript>
|
||||
<elements>
|
||||
<DOMSymbolInstance libraryItemName="Button1" name="butPlus5" symbolType="button">
|
||||
@@ -125,6 +145,35 @@ butReset.addEventListener(MouseEvent.CLICK, onReset);]]></script>
|
||||
<Point/>
|
||||
</transformationPoint>
|
||||
</DOMSymbolInstance>
|
||||
<DOMStaticText fontRenderingMode="standard" width="51" height="22.15" isSelectable="false">
|
||||
<matrix>
|
||||
<Matrix tx="474.2" ty="12"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Speed</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMStaticText>
|
||||
<DOMSymbolInstance libraryItemName="ButtonUp" name="btnSpeedUp" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="450" ty="11.3"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point x="6.6" y="5.6"/>
|
||||
</transformationPoint>
|
||||
</DOMSymbolInstance>
|
||||
<DOMSymbolInstance libraryItemName="ButtonDown" name="btnSpeedDown" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="450" ty="26"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point x="6.6" y="5.6"/>
|
||||
</transformationPoint>
|
||||
</DOMSymbolInstance>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
@@ -134,6 +183,8 @@ butReset.addEventListener(MouseEvent.CLICK, onReset);]]></script>
|
||||
</timelines>
|
||||
<PrinterSettings/>
|
||||
<publishHistory>
|
||||
<PublishItem publishSize="9791" publishTime="1771699753"/>
|
||||
<PublishItem publishSize="10087" publishTime="1771695966" publishDebug="true"/>
|
||||
<PublishItem publishSize="9267" publishTime="1771270767"/>
|
||||
<PublishItem publishSize="9269" publishTime="1771270237"/>
|
||||
<PublishItem publishSize="9215" publishTime="1771270105"/>
|
||||
@@ -152,7 +203,5 @@ butReset.addEventListener(MouseEvent.CLICK, onReset);]]></script>
|
||||
<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>
|
||||
90
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/ButtonDown.xml
vendored
Normal file
90
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/ButtonDown.xml
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="ButtonDown" itemID="6999ec93-000001e6" symbolType="button" lastModified="1771695532">
|
||||
<timeline>
|
||||
<DOMTimeline name="ButtonDown" currentFrame="2">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" 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 fillStyle0="1" strokeStyle="1" edges="!135 225S5|265 0!265 0|0 0!0 0|135 225"/>
|
||||
<Edge cubics="!265 0(;265,0 0,0 0,0q265 0 0 0);"/>
|
||||
<Edge cubics="!0 0(;0,0 135,225 135,225q0 0 135 225);"/>
|
||||
<Edge cubics="!135 225(;135,225 265,0 265,0q135 225 265 0);"/>
|
||||
</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 fillStyle0="1" strokeStyle="1" edges="!265 0|0 0!0 0|135 225!135 225|265 0"/>
|
||||
<Edge cubics="!265 0(;265,0 0,0 0,0q265 0 0 0);"/>
|
||||
<Edge cubics="!0 0(;0,0 135,225 135,225q0 0 135 225);"/>
|
||||
<Edge cubics="!135 225(;135,225 265,0 265,0q135 225 265 0);"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#0000FF"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle0="1" strokeStyle="1" edges="!265 0|0 0!0 0|135 225!135 225|265 0"/>
|
||||
<Edge cubics="!265 0(;265,0 0,0 0,0q265 0 0 0);"/>
|
||||
<Edge cubics="!0 0(;0,0 135,225 135,225q0 0 135 225);"/>
|
||||
<Edge cubics="!135 225(;135,225 265,0 265,0q135 225 265 0);"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
90
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/ButtonUp.xml
vendored
Normal file
90
libsrc/ffdec_lib/testdata/debug_game/as3_scoring/LIBRARY/ButtonUp.xml
vendored
Normal file
@@ -0,0 +1,90 @@
|
||||
<DOMSymbolItem xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://ns.adobe.com/xfl/2008/" name="ButtonUp" itemID="6999ec8b-000001e1" symbolType="button" lastModified="1771695510">
|
||||
<timeline>
|
||||
<DOMTimeline name="ButtonUp" currentFrame="2">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" 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 fillStyle0="1" strokeStyle="1" edges="!130 0S5|0 225!0 225|265 225!265 225|130 0"/>
|
||||
<Edge cubics="!0 225(;0,225 265,225 265,225q0 225 265 225);"/>
|
||||
<Edge cubics="!265 225(;265,225 130,0 130,0q265 225 130 0);"/>
|
||||
<Edge cubics="!130 0(;130,0 0,225 0,225q130 0 0 225);"/>
|
||||
</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 fillStyle0="1" strokeStyle="1" edges="!0 225|265 225!265 225|130 0!130 0|0 225"/>
|
||||
<Edge cubics="!0 225(;0,225 265,225 265,225q0 225 265 225);"/>
|
||||
<Edge cubics="!265 225(;265,225 130,0 130,0q265 225 130 0);"/>
|
||||
<Edge cubics="!130 0(;130,0 0,225 0,225q130 0 0 225);"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#0000FF"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle0="1" strokeStyle="1" edges="!265 225|130 0!130 0|0 225!0 225|265 225"/>
|
||||
<Edge cubics="!0 225(;0,225 265,225 265,225q0 225 265 225);"/>
|
||||
<Edge cubics="!265 225(;265,225 130,0 130,0q265 225 130 0);"/>
|
||||
<Edge cubics="!130 0(;130,0 0,225 0,225q130 0 0 225);"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
@@ -5,8 +5,8 @@
|
||||
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>
|
||||
<xmp:MetadataDate>2026-02-21T09:45:46-08:00</xmp:MetadataDate>
|
||||
<xmp:ModifyDate>2026-02-21T09:45:46-08:00</xmp:ModifyDate>
|
||||
</rdf:Description>
|
||||
<rdf:Description rdf:about=""
|
||||
xmlns:dc="http://purl.org/dc/elements/1.1/">
|
||||
@@ -22,7 +22,7 @@
|
||||
<stRef:originalDocumentID>xmp.did:7FE581FA660BF11197008EF33C376745</stRef:originalDocumentID>
|
||||
</xmpMM:DerivedFrom>
|
||||
<xmpMM:DocumentID>xmp.did:EDF1CDD4690BF11197008EF33C376745</xmpMM:DocumentID>
|
||||
<xmpMM:InstanceID>xmp.iid:9DDF39F36B0BF11197008EF33C376745</xmpMM:InstanceID>
|
||||
<xmpMM:InstanceID>xmp.iid:3B7DE8AB4B0FF111A0D3B09FD2F43FD4</xmpMM:InstanceID>
|
||||
<xmpMM:OriginalDocumentID>xmp.did:7FE581FA660BF11197008EF33C376745</xmpMM:OriginalDocumentID>
|
||||
<xmpMM:History>
|
||||
<rdf:Seq>
|
||||
@@ -45,6 +45,12 @@
|
||||
<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:3B7DE8AB4B0FF111A0D3B09FD2F43FD4</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>
|
||||
|
||||
Binary file not shown.
Reference in New Issue
Block a user