Hey guys, I thought I would share a little script i just wrote that lets me find out what users have flash 8 and what users don’t. I’m using it on www.greekcollegeproducts.com. People with Flash 8+ will have pngs loaded, and everyone else will see jpgs on white backgrounds
I know this isnt a “version checker” per say but it will at least tell you who doesnt have flash player 8.
function checkVersion() {
var v = new flash.filters.BlurFilter(1, 1);
return (v ? 8 : 7);
}
trace(checkVersion());