.Net or COM library for reading SWF files

I am looking for a library to read a SWF file and allow it to parse its file and header information. Is there anything that will work?

+1


source to share


2 answers


I ended up finding it:



http://sourceforge.net/projects/swfdotnet/

+2


source


I don't know of any libraries (including .NET) that allow you to read and parse (or reverse engineer) the contents of SWF files. The ActionScript you are linking to is compiled to byte code at compile time, so you will not find the actual ActionScript source code in the SWF file.



For more information in SWF file format, I suggest you check out the official specifications .

+1


source







All Articles