I have a SWF of unknown origin, and I need to know which flash player version it was targeted at when it was published. What's the best way to get this info?
|
feedback
|
|
The 4th byte in the SWF file carries the version number, for example 0A is for Flash Player 10. EDIT: Because of the high interest this question got I've decided to give more feedback The first 8 bytes of any SWF file are not compressed, the rest of the file could be compressed (or not) by zlib compression.
| |||||||||
feedback
|
|
The Flex SDK contains a tool called swfdump that displays all of the metadata inside of a SWF file. Here is the beginning of the output when I run "swfdump foo.swf":
| |||
|
feedback
|
|
Take a gander at the SWF spec from http://www.adobe.com/devnet/swf.html Then do a hex dump or open the SWF in an editor that can display hex. The SWF version is one of the first few bytes and is before the compressed data starts. I want to say it is byte 4, but I don't totally recall. The value is the version number. IIRC, the point version is not encoded in the SWF. GNU file may also tell you. I may have edited my rules to do this, though. | |||||||
feedback
|
|
There's also http://swfversion.com | |||
|
feedback
|
|
this link might help http://code.google.com/p/swfobject/wiki/api | |||
feedback
|