Gilbo
Gilbo

Reputation: 87

Is it possible to decode and recompile flash using c#?

I'd like to decode a SWF file into its base FLA file and then recompile that back into an SWF. Can this be done using C#?

Upvotes: 0

Views: 334

Answers (1)

Tyler Larson
Tyler Larson

Reputation: 271

The fla format changes every version of the Flash IDE but really it is just a container, I would suggest looking into the CS5 uncompressed fla format which will be easer to generate but you still need all of the byte code out of the swf, I would look at the actionScript library http://github.com/claus/as3swf for the basics but you are still going to need to write a conversion layer back into the fla.

Upvotes: 1

Related Questions