Extracting Actionscript from .fla file, without Adobe Flash

北城以北 提交于 2019-12-05 14:48:59

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.

CS5 FLA is just a ZIP with AS3 code inside DOMDocument.xml.

If the provider of your FLA is using CS5, the FLA is saved in a zip-based XFL format. You could then simply rename the .FLA extension to .ZIP and unzip to view its contents. Any frame scripts will be located in DomDocument.xml.

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

You can use FFDEC in order to extract the scripts and assets:

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

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!