Mxmlc generates different binaries (swf) even without code changes

I run svn and send swf files to my client. I realized that even without modifying the swf code, the generated mxmlc seems to be different every time.

Is it possible for it to generate the same swf file (so that it doesn't require svn commit) if there is no code change?

below is how i will generate the swf.

mxmlc -load-config + = obj \ Sample.xml -debug = true -incremental = true -benchmark = false -define = CONFIG :: debugging, true -o bin \ Sample.swf

+2


source to share


1 answer


IIRC, the build timestamp is embedded in the SWF and then the binary is compressed. This will result in minor changes to the compression used for the binary and therefore will change frequently.



I don't know about that.

+1


source







All Articles