Ah.... i think i see... thank you for the reply....
So how would i change the syntax if
(swfobject.hasFlashPlayerVersion("10.2.x.x")) to evaluate if 10.2.x.x
is less than or equal too?
Is this possible? Based on your very helpful feed back i wrote the
following. Do you think this would do the same?
Hope i am making sense.... here is the code i tried to re-write below.
-----------------------------------------------------
<html>
<head>
<title>DISPLAY TEXT BASED ON FLASH VERSION</title>
<meta http-equiv="Content-Type" content="text/html;
charset=iso-8859-1" />
<script type="text/javascript" src="swfobject.js"></
script>
</head>
<body>
<script type="text/javascript">
swfobject.registerObject("myFlashContent",
"10.2.153.1");
if
(swfobject.hasFlashPlayerVersion("10.2.153.1"))
{
document.write("You have FLASH 10.2.153.1 You
Can View This Video"); // This needs to be anything 10.2.x and above
but not sure how to put in the evaluation syntax
}
else if
(swfobject.hasFlashPlayerVersion("10.0.0.0")) // This needs to be
anything less that 10.0 not sure how create evaluation syntax
{
document.write("You Have LESS Than Version 10.2
You Cannot View This Video");
}
else
{
document.write("You Do Not Have Flash Or Correct Version! You
cannot play this video unless you have version 10.2.x or Greater!");
}
</script>
</body>
</html>
---------------------------------------------------------
Your thoughts?
Cheers
RFX