Jon
Jon

Reputation: 2085

.Net or COM Library to read SWF Actionscript

I'm looking for a library to read a SWF file and let me parse through its actionscript and header information. Is there anything out there that will work?

Upvotes: 1

Views: 636

Answers (2)

Jon
Jon

Reputation: 2085

I ended up finding one at:

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

Upvotes: 2

Luke
Luke

Reputation: 21236

I do not know of any libraries (including .NET) that let you read and parse (or reverse engineer) the contents of SWF's files. The ActionScript you are referring to is compiled down to byte code during compilation so you will not find the actual ActionScript source code in the SWF file.

For more information in the SWF file format I suggest you have a look at the official specifications.

Upvotes: 1

Related Questions