// 
//   This will fix the error message 
// 
// 
// Click to activate and use this control box 
// 

// How to solve the " click to activate and use this control" prompt box 


// Why do I get a message prompting me to "click to activate and use this
// control" when I hover my mouse over a Flash element?

// This is a caused by the latest I. E. update.

// Microsoft recently lost a legal battle with a patent holder about the way
// Internet Explorer displays OBJECTs and EMBEDs in webpages. Microsoft then
// decided to update its Internet Explorer browser with changes requiring user
// input to display and activate ActiveX based media. 
// 
// This affects Flash files, QuickTime, RealPlayer, Java , Adobe Acrobat among
// others. It means users have to click the object first in order to activate
// its functions.
// 
// To fix the problem, please follow these steps:
// 
// 1) Just below the last <object> in your HTML page, insert the following
// Javascript:
// 
// <script type="text/javascript" src="fixit.js"></script>
// 
// 


theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}

