views:

201

answers:

1

If I have an abc file, either compiled through the flex SDK, or stripped from a .SWF file, are there any tools that will disassemble that file purely to see what it contains?

+1  A: 

Haven't played much with abc, but one thing that comes to mind is as3abc. Maybe if you load the abc in binary format using and URLLoader and passing the bytes to the ABC constructor you can see what it contains(actionscript-wise)

Also, there might some tools for that in Apparat, not sure. I've got an abc file using dump, but haven't gone any further.

java -jar dump.jar -input a.swf -abc

You can have a look at the contents with any text editor.

HTH, George

George Profenza