|
Stewart, In the interest of disseminating information such as it is, I may have found the problem. I was using the following statement in my code to get around the "Click to activate and use this control" message for Flash applets in IE.
<p class="menu"> </p><script type="text/javascript" src="http://artistmanagementllc.com/MP3/flashfix.js"></script>
<script type="text/javascript" src="http://artistmanagementllc.com/MP3/flashfix.js"></script>
the actual code from the flashfix.js file is -
if (document.getElementsByTagName)
{
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {theObjects[i].outerHTML = theObjects[i].outerHTML;}
}
Now I'm not nearly smart enough to know what all that means. The flashfix code actually came from Cool Focus since I am using their applets but DW CS3 recognizes that the object tag is faulty and offers to fix it. I told it "yes change the object tags" and then took out the above flashfix code. It seems to have taken care of my problem. I may have had some wrinkle in there that it didn't like but regardless I can no longer reproduce the problem. Thanks again for taking a look at it and maybe this will help sombody else with the same problem. Let me know if you have any questions and I'll try to answer them if I am able. Have a great weekend!
|