"click to activate and use this control"
Here's a simple tip to remove this annoying message often seen when Macromedia Flash content is used in a web page - I've even seen it here on Freeola ;¬)
This problem only affects Internet Explorer.
Not only do your visitors see this message, but worse they have to "click twice" to follow any hypertext links!
A simple get-a-round to stop the message and the need for 'two clicks' is to add a small JavaScript after the </object> tag.
Add this:
<script language="javascript" type="text/javascript" src="flashfix.js"></script>
Then create a file named 'flashfix.js' containing the following:
objects = document.getElementsByTagName("object");
for (var i = 0; i < objects.length; i++)
{
objects[ i].outerHTML = objects[ i].outerHTML;
}
To demonstrate the problem and see the fix working visit: www.hmmm.ip3.co.uk/flash











