How to determine the version of Flash using PHP or javascript?

I would like to save the flashversion of the website users in the database, so when they report problems with the website, I can easily see which flash version they are using. Is there any way to detect it using PHP or using javascript?

+4
source share
1 answer

AS3 replaced AS2 patchy getVersion with the flash.system.Capabilities class. There you will find a property called a version that will give you what you want. This is not in Javascript or PHP, but a small (and possibly invisible) SWF can easily send a receive request to the server page to send information to your database.

If you need a query that needs to be executed in Javascript, for some reason it is possible (though not fluid) to support AS3 and Javascript communication.

+1
source

All Articles