hallo!
if(navigator.plugin.indexOf("Flash") != -1
{
poss = navigator.plugin.indexOf(".") - 1;
pose = navigator.plugin.indexOf(".");
vers = navigator.plugin.slice(poss,pose);
if(vers >= 3)
{
// hier anweisunger für flash 3 oder höher
}
else if(vers < 3)
{
// gier anweisungern für flash 1 und flash 2
}
}
das script extrahiert die versionsnummer vers und wertet sie aus!
ich habe das script nicht getestet!!!
random