mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-23 16:54:48 +00:00
Added: #2360 SOL file (Flash Local Shared Object - flash cookie) editor
This commit is contained in:
154
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/DOMDocument.xml
vendored
Normal file
154
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/DOMDocument.xml
vendored
Normal file
@@ -0,0 +1,154 @@
|
||||
<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" autoSaveEnabled="true" autoSaveHasPrompted="true">
|
||||
<fonts>
|
||||
<DOMFontItem name="Font 1" itemID="6727baf6-0000495f" font="TimesNewRomanPSMT" size="0" id="1" sourceLastImported="1730657014" embedRanges="1|2|3|4"/>
|
||||
</fonts>
|
||||
<symbols>
|
||||
<Include href="LoadButton.xml" itemIcon="0" loadImmediate="false" itemID="6727bbf4-0000496e" lastModified="1730657274"/>
|
||||
<Include href="SaveButton.xml" itemIcon="0" loadImmediate="false" itemID="6727b7a2-00004956" lastModified="1730657233"/>
|
||||
</symbols>
|
||||
<timelines>
|
||||
<DOMTimeline name="Scene 1">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 2" color="#9933CC" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<Actionscript>
|
||||
<script><![CDATA[import flash.net.SharedObject;
|
||||
import flash.events.MouseEvent;
|
||||
import flash.net.ObjectEncoding;
|
||||
import flash.xml.XMLDocument;
|
||||
import flash.net.registerClassAlias;
|
||||
|
||||
|
||||
|
||||
var amf0test:SharedObject = SharedObject.getLocal("amf0test");
|
||||
amf0test.objectEncoding = ObjectEncoding.AMF0;
|
||||
|
||||
var amf3test:SharedObject = SharedObject.getLocal("amf3test");
|
||||
amf3test.objectEncoding = ObjectEncoding.AMF3;
|
||||
|
||||
var refobj = {a:5, b:7};
|
||||
|
||||
var reftest = {a:refobj, b:refobj};
|
||||
reftest["c"] = reftest;
|
||||
|
||||
|
||||
var s:String = "";
|
||||
for (var i = 0; i < 70000; i++) {
|
||||
s += "A";
|
||||
}
|
||||
registerClassAlias("MyClassAlias", MyClass);
|
||||
|
||||
var data = {
|
||||
mynumber : 1.5,
|
||||
mybool : true,
|
||||
mystring : "Hello world",
|
||||
myobj : {a:1, b:2},
|
||||
mynull : null,
|
||||
myundefined : undefined,
|
||||
myarray : ["a","b","c"],
|
||||
mydate : new Date(2024,12-1,3,23,16),
|
||||
myref: reftest,
|
||||
mylongstring : s,
|
||||
myxml : new XMLDocument("<ul><li>item</li></ul>"),
|
||||
mytypedobject : new MyClass()
|
||||
};
|
||||
|
||||
amf0test.data.tref = reftest;
|
||||
amf0test.data.mydata = data;
|
||||
amf0test.flush();
|
||||
|
||||
amf3test.data.mydata = data;
|
||||
amf3test.flush();
|
||||
|
||||
|
||||
var localDataAmf0:SharedObject = SharedObject.getLocal("mySharedObjectAmf0");
|
||||
localDataAmf0.objectEncoding = ObjectEncoding.AMF0;
|
||||
|
||||
var localDataAmf3:SharedObject = SharedObject.getLocal("mySharedObjectAmf3");
|
||||
localDataAmf3.objectEncoding = ObjectEncoding.AMF3;
|
||||
|
||||
|
||||
saveButton.addEventListener(MouseEvent.CLICK, fonSave);
|
||||
loadButton.addEventListener(MouseEvent.CLICK, fonLoad);
|
||||
|
||||
function fonSave(event:MouseEvent):void {
|
||||
localDataAmf0.data.myText = inputText.text;
|
||||
localDataAmf0.flush();
|
||||
|
||||
localDataAmf3.data.myText = inputText.text;
|
||||
localDataAmf3.flush();
|
||||
}
|
||||
|
||||
function fonLoad(event:MouseEvent):void {
|
||||
inputText.text = localDataAmf3.data.myText;
|
||||
}]]></script>
|
||||
</Actionscript>
|
||||
<elements/>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<elements>
|
||||
<DOMInputText name="inputText" width="367" height="45.75" border="true">
|
||||
<matrix>
|
||||
<Matrix tx="86.95" ty="77.25"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters></characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMInputText>
|
||||
<DOMSymbolInstance libraryItemName="SaveButton" name="saveButton" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="85.95" ty="154"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point x="55.5" y="21"/>
|
||||
</transformationPoint>
|
||||
</DOMSymbolInstance>
|
||||
<DOMSymbolInstance libraryItemName="LoadButton" name="loadButton" symbolType="button">
|
||||
<matrix>
|
||||
<Matrix tx="346.5" ty="155"/>
|
||||
</matrix>
|
||||
<transformationPoint>
|
||||
<Point/>
|
||||
</transformationPoint>
|
||||
</DOMSymbolInstance>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timelines>
|
||||
<PrinterSettings/>
|
||||
<publishHistory>
|
||||
<PublishItem publishSize="21508" publishTime="1730740069"/>
|
||||
<PublishItem publishSize="21505" publishTime="1730740015"/>
|
||||
<PublishItem publishSize="21520" publishTime="1730739945"/>
|
||||
<PublishItem publishSize="21510" publishTime="1730739873"/>
|
||||
<PublishItem publishSize="21496" publishTime="1730739737"/>
|
||||
<PublishItem publishSize="21491" publishTime="1730738502"/>
|
||||
<PublishItem publishSize="21497" publishTime="1730738131"/>
|
||||
<PublishItem publishSize="21516" publishTime="1730705495"/>
|
||||
<PublishItem publishSize="21264" publishTime="1730677777"/>
|
||||
<PublishItem publishSize="20259" publishTime="1730677769"/>
|
||||
<PublishItem publishSize="15819" publishTime="1730676977"/>
|
||||
<PublishItem publishSize="15799" publishTime="1730676777"/>
|
||||
<PublishItem publishSize="20794" publishTime="1730676730"/>
|
||||
<PublishItem publishSize="20793" publishTime="1730676669"/>
|
||||
<PublishItem publishSize="20792" publishTime="1730676587"/>
|
||||
<PublishItem publishSize="20407" publishTime="1730676575"/>
|
||||
<PublishItem publishSize="20409" publishTime="1730676542"/>
|
||||
<PublishItem publishSize="20409" publishTime="1730676533"/>
|
||||
<PublishItem publishSize="20251" publishTime="1730676524"/>
|
||||
<PublishItem publishSize="20251" publishTime="1730676504"/>
|
||||
</publishHistory>
|
||||
</DOMDocument>
|
||||
102
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/LIBRARY/LoadButton.xml
vendored
Normal file
102
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/LIBRARY/LoadButton.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="LoadButton" itemID="6727bbf4-0000496e" symbolType="button" lastModified="1730657274">
|
||||
<timeline>
|
||||
<DOMTimeline name="LoadButton">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 2" color="#9933CC" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" duration="3" keyMode="9728">
|
||||
<elements>
|
||||
<DOMInputText selected="true" width="87" height="22.15" includeOutlines="true" lineType="multiline">
|
||||
<matrix>
|
||||
<Matrix tx="10" ty="9.4"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Load</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMInputText>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#CCCCCC"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2220 840|0 840!0 840|0 0!0 0|2220 0!2220 0|2220 840"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="1" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#FF9999"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2220 840|0 840!0 840|0 0!0 0|2220 0!2220 0|2220 840"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" 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="!2220 840|0 840!0 840|0 0!0 0|2220 0!2220 0|2220 840"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
102
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/LIBRARY/SaveButton.xml
vendored
Normal file
102
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/LIBRARY/SaveButton.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="SaveButton" itemID="6727b7a2-00004956" symbolType="button" lastModified="1730657233">
|
||||
<timeline>
|
||||
<DOMTimeline name="SaveButton">
|
||||
<layers>
|
||||
<DOMLayer name="Layer 2" color="#9933CC" current="true" isSelected="true">
|
||||
<frames>
|
||||
<DOMFrame index="0" duration="3" keyMode="9728">
|
||||
<elements>
|
||||
<DOMInputText selected="true" width="87" height="22.15" includeOutlines="true" lineType="multiline">
|
||||
<matrix>
|
||||
<Matrix tx="10" ty="9.4"/>
|
||||
</matrix>
|
||||
<textRuns>
|
||||
<DOMTextRun>
|
||||
<characters>Save</characters>
|
||||
<textAttrs>
|
||||
<DOMTextAttrs alignment="center" aliasText="false" size="20" bitmapSize="400" face="TimesNewRomanPSMT"/>
|
||||
</textAttrs>
|
||||
</DOMTextRun>
|
||||
</textRuns>
|
||||
</DOMInputText>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
<DOMLayer name="Layer 1" color="#4FFF4F">
|
||||
<frames>
|
||||
<DOMFrame index="0" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#CCCCCC"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2220 840|0 840!0 840|0 0!0 0|2220 0!2220 0|2220 840"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="1" keyMode="9728">
|
||||
<elements>
|
||||
<DOMShape>
|
||||
<fills>
|
||||
<FillStyle index="1">
|
||||
<SolidColor color="#FF9999"/>
|
||||
</FillStyle>
|
||||
</fills>
|
||||
<strokes>
|
||||
<StrokeStyle index="1">
|
||||
<SolidStroke scaleMode="normal">
|
||||
<fill>
|
||||
<SolidColor/>
|
||||
</fill>
|
||||
</SolidStroke>
|
||||
</StrokeStyle>
|
||||
</strokes>
|
||||
<edges>
|
||||
<Edge fillStyle1="1" strokeStyle="1" edges="!2220 840|0 840!0 840|0 0!0 0|2220 0!2220 0|2220 840"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
<DOMFrame index="2" 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="!2220 840|0 840!0 840|0 0!0 0|2220 0!2220 0|2220 840"/>
|
||||
</edges>
|
||||
</DOMShape>
|
||||
</elements>
|
||||
</DOMFrame>
|
||||
</frames>
|
||||
</DOMLayer>
|
||||
</layers>
|
||||
</DOMTimeline>
|
||||
</timeline>
|
||||
</DOMSymbolItem>
|
||||
55
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/META-INF/metadata.xml
vendored
Normal file
55
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/META-INF/metadata.xml
vendored
Normal file
@@ -0,0 +1,55 @@
|
||||
<?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>2024-11-03T09:46:34-08:00</xmp:CreateDate>
|
||||
<xmp:MetadataDate>2024-11-03T09:51:04-08:00</xmp:MetadataDate>
|
||||
<xmp:ModifyDate>2024-11-03T09:51:04-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:InstanceID>xmp.iid:329919207399EF119BABD30F3587D305</xmpMM:InstanceID>
|
||||
<xmpMM:DocumentID>xmp.did:329919207399EF119BABD30F3587D305</xmpMM:DocumentID>
|
||||
<xmpMM:OriginalDocumentID>xmp.did:329919207399EF119BABD30F3587D305</xmpMM:OriginalDocumentID>
|
||||
<xmpMM:History>
|
||||
<rdf:Seq>
|
||||
<rdf:li rdf:parseType="Resource">
|
||||
<stEvt:action>created</stEvt:action>
|
||||
<stEvt:instanceID>xmp.iid:329919207399EF119BABD30F3587D305</stEvt:instanceID>
|
||||
<stEvt:when>2024-11-03T09:46:34-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/sharedobjects/sharedobjects/MobileSettings.xml
vendored
Normal file
0
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/MobileSettings.xml
vendored
Normal file
206
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/PublishSettings.xml
vendored
Normal file
206
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/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>sharedobjects.swf</flashFileName>
|
||||
<projectorWinFileName>sharedobjects.exe</projectorWinFileName>
|
||||
<projectorMacFileName>sharedobjects.app</projectorMacFileName>
|
||||
<htmlFileName>sharedobjects.html</htmlFileName>
|
||||
<gifFileName>sharedobjects.gif</gifFileName>
|
||||
<jpegFileName>sharedobjects.jpg</jpegFileName>
|
||||
<pngFileName>sharedobjects.png</pngFileName>
|
||||
<qtFileName>sharedobjects.mov</qtFileName>
|
||||
<rnwkFileName>sharedobjects.smil</rnwkFileName>
|
||||
<swcFileName>sharedobjects.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>sharedobjects.xfl_content.html</ContentFilename>
|
||||
<AlternateFilename>sharedobjects.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>Main</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>
|
||||
BIN
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/bin/SymDepend.cache
vendored
Normal file
BIN
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/bin/SymDepend.cache
vendored
Normal file
Binary file not shown.
1
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/sharedobjects.xfl
vendored
Normal file
1
libsrc/ffdec_lib/testdata/sharedobjects/sharedobjects/sharedobjects.xfl
vendored
Normal file
@@ -0,0 +1 @@
|
||||
PROXY-CS5
|
||||
Reference in New Issue
Block a user