yes there is a way..
try colin moock. i hope i spell his name right.
or this..
ActionScript Code:
var tempVer;
playerVersion = eval("$version");
tempVer.text=playerVersion;
requiredVer.text="6,0,65,0"; // you can change to any version that you want your viewers to be able to view
myLength = length(playerVersion);
while (i<=myLength) {
i = i+1;
temp = substring(playerVersion, i, 1);
if (temp eq " ") {
platform = substring(playerVersion, 1, i-1);
majorVersion = substring(playerVersion, i+1, 1);
secondHalf = substring(playerVersion, i+1, myLength-i);
minorVersion = substring(secondHalf, 5, 2);
}
}
if ((majorVersion >=6) && (minorVersion >=65)) {
message.text="your message.";
// your action;
...
} else {
message.text="your message.";
getURL("http://www.macromedia.com"); // or other things that you want viewers to do
}