I have tried every workaround to avoid the "Click to activate and use this control" that I have found and none of them work. I see them working allright on other sites but for some reason it does not work on mine.
Any help with this is greatly appreciated.
Here are a few examples.
this is the flash movie:
here is one version of the script
here is another version:
Any help with this is greatly appreciated.
Here are a few examples.
this is the flash movie:
Code:
<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="[URL unfurl="true"]http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"[/URL] width="197" height="88" id="exp" ALIGN="">
<PARAM NAME=movie VALUE="flash/exploadersq.swf">
<PARAM NAME=quality VALUE=high>
<PARAM NAME=bgcolor VALUE=#FFFFFF>
<EMBED src="flash/exploadersq.swf" swliveconnect="true" quality=high bgcolor=#FFFFFF NAME="exp" WIDTH="197" HEIGHT="88" ALIGN="" TYPE="application/x-shockwave-flash" PLUGINSPAGE="[URL unfurl="true"]http://www.macromedia.com/go/getflashplayer"></EMBED>[/URL]
</OBJECT></object><script language="JavaScript" type="text/javascript" src="NoIEActivate.js"></script>
here is one version of the script
Code:
//ediy v2
n=navigator.userAgent;
w=n.indexOf("MSIE");
if((w>0)&&(parseInt(n.charAt(w+5))>5)){
T=["object","embed","applet"];
for(j=0;j<2;j++){
E=document.getElementsByTagName(T[j]);
for(i=0;i<E.length;i++){
P=E[i].parentNode;
H=P.innerHTML;
P.removeChild(E[i]);
P.innerHTML=H;
}}}
here is another version:
Code:
theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects[i].outerHTML = theObjects[i].outerHTML;
}