IE + Flash Problemo
As a result of a legal battle with a patent holder, all embedded objects in IE require you to click the object before you can activate its controls.
When we started using a flash slideshow on one of our homepages, we were in a scramble to get all the copy-edits and registration systems up and running. Now we have some time to breath, so I went back and found an article about out how to get around this problem. (Read it here)
Adding a few lines of javascript takes care of the click-to-activate problem.
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
objects[i].outerHTML = objects[i].outerHTML;
}
You can see it on one of our sites here: www.interop.com
***update 6/26:
Noticed some conflicts caused by the above version. Mainly happening with our drop down menus, and the javascript we use in our ad network didn’t like having it’s “outerHTML” messed with. The version below works great thus far:
http://activecontent.blogspot.com/