Matt,
Can you fix the click to activate bug on the flash movie? I am attaching the code to correct below. It keeps IE, Opera, and FF users from having to click the movie before they can use it. I am assuming the header is in an include or part of a template, so you should only need to paste this in once location.
Paste this code inline in the document, right after the closing </object> tag for the flash movie is best:
Then paste this into a file "fixit.js" and upload to the same place as your nav.swf file...root of your site.
Let me know if it doesn't work....there are other options.
Can you fix the click to activate bug on the flash movie? I am attaching the code to correct below. It keeps IE, Opera, and FF users from having to click the movie before they can use it. I am assuming the header is in an include or part of a template, so you should only need to paste this in once location.
Paste this code inline in the document, right after the closing </object> tag for the flash movie is best:
Code:
<script type="text/javascript" src="http://www.tigeowners.com/fixit.js"></script>
Code:
//This script will fix the IE click issues //You can make the link relative, I am unsure of your site structure theObjects = document.getElementsByTagName("object"); for (var i = 0; i < theObjects.length; i++) ** theObjects[i].outerHTML = theObjects[i].outerHTML; }
Let me know if it doesn't work....there are other options.
Comment