strikerboy,
is the flash player installed for all versions of your browsers? ie. if you use firefox and ie it should be installed for both. if you see a site in firefox, the site's flash version checker may be checking to see what version of flash is installed in ie.
can you see similar flash items on other sites? some sites do not properly check your version number,checking only the leftmost digit, thus seeing the new version as a '1' which is less than 6, this was OK up till version 10 came along.
code snippet i found on one site:
<!-- // Create flash object tag here (version 6 is the current minimum) var fo = new FlashObject('loader.swf','loader','100%','100%',6); fo.addParam('swLiveConnect','true'); fo.addVariable('lcId',lcId); fo.write('flashcontent'); // Testing with FlashTag found in JavaScriptFlashGateway.js //var ft = new FlashTag('loader.swf','100%','100%','6,0,0,0'); //ft.addFlashVar('lcId',lcId); //ft.write(document); //-->
the site's web programmer needs to modify his source code to accommodate the new version being double digit.
if it's your site, and you are the programmer, you'll need to change your code. how, i do not know, i don't program (in html that is). suspect it may be more than just changing a number in one place...
if it's someone else's site, you need to contact them & let them know.