English 中文(简体)
Extracting Actionscript from .fla file, noobe
原标题:Extracting Actionscript from .fla file, without Adobe Flash

Unlike this guy, I m using MTASC s Haxe to compile SWF from AS. Considering I don t have Adobe CS, what are our options to extract the action scripts from any FLA file?

I mean different versions, like CS4, CS5, etc. Converting older versions to CS5 would also help.

最佳回答

CS4 FLA container is Microsoft Structured Storage (like MS Word documents). You can open it with for example FAR Manager or OpenMCDF. Embedded AS3 code can be seen inside the objects in Unicode plaintext. You can open it with a text editor that supports Unicode encoding (2-byte UCS-2 Little Endian, not UTF8), and trim off binary garbage.

5 CS5 FLA is only a ZIP with AS3 Code within DOMDocument.xml.

问题回答

如果你的FLA提供商使用CS5,则FLA以Zp为基础的XFL格式予以节省。 然后,你可以简单地重新命名。 FLA 延伸至......。 ZIP and unzip to view its content. 任何框架说明将载于DomDocument.xml。

See Lee Brimelow s post on the subject for more detail: http://blog.theflashblog.com/?p=1986

您可使用FFDEC,以提取文字和资产:

https://www.free-decompiler.com/flash/download/





相关问题
Writing a Web Application in Haxe without Apache and PHP?

Haxe has Apache httpd modules and can compile to PHP code. These are 2 options I know to make a web application that runs on the server. You can start a http server with nekotools, but this is ...

actionscript development on mac

I know of FlashDevelop for windows but how about developing actionscript or haxe on a mac? besides flex plugin for eclipse, flex builder and FDT is there anny good IDE out there for actionscript ...

Duplicate mousewheel events in Flash on XP Firefox

In Firefox 3, all the mouseWheel events in my Haxe/Flash app are firing twice. This only seems to happen in the Windows version of Firefox; it doesn t happen in IE or Opera, and it doesn t happen in ...

perspective in Flash

I have an 2D image that I want to draw in true 3D, and spin around its centre. I m using Actionscript 3 code (actually Haxe, no IDE), and I m struggling to discover the values by experimentation. I ...

How to save an XML file on server with Haxe PHP?

I am just starting out with Haxe development, and wanted to give the PHP side a go, but am already a little confused. What is the best way to save some form data to XML files in a folder on a server ...

热门标签