
Originally Posted by
vladanik
I want to do this with HTML.
No problems, the following pieces of HTML will do the trick...
If you want your site viewable to people with older Flash Player versions, auto download only actioned by IE/win32 users with FP2 or no FP:
Code:
<object....
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=3,0,0,0"
..>
<a href="http://www.macromedia.com/go/getflashplayer">You need Flash Player 3 or greater to use this site (Seen only by those with FP2 or no FP)</a>
</object>
And the reverse - if you want IE/Win32 users to see a link to the latest Flash Player, and auto download it if they don't have it.
Code:
<object....
codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,79,0"
..>
<a href="http://www.macromedia.com/go/getflashplayer">you need the latest Flash Player (Seen by FP 6,0,65,0 users and less)</a>
</object>
Bear in mind that if you have Flash Player 5 actionscript in your movie, users with FP2,3 or 4 will not be able to run it. This is because FP 5 changed to dot syntax rather than the older target paths of yesteryore.
Similarly some FP6 actionscript will only run in FP6. FP5 and less will ignore it.
If you want backwards compatibility, Flash player 5 is the one to target. http://www.macromedia.com/software/p...netration.html
HTH
james
Bookmarks