all groups > coldfusion flash integration > september 2006 >
You're in the

coldfusion flash integration

group:

Flash buttons behaving funny on IE 6 sp2


Flash buttons behaving funny on IE 6 sp2 itsSan
9/13/2006 1:46:15 PM
coldfusion flash integration:
Env. Details: IE6 SP2, CF 5, Flash MX.
I have a pop up window with two flash "OK" and "Cancel" buttons which behave
differently on different machines. They seem to behave ok on all other
environments except SP2.
The problem is that when I click on the buttons they do not respond at all,
which means that the code on click of those buttons is not called at all !!
I tried putting alert messages in the javascript method which is supposed to
be called but they dont display as well.
Any help is much appreciated !

Re: Flash buttons behaving funny on IE 6 sp2 Fluxay
9/16/2006 1:29:52 AM
What about microsoft's mazafucking "Click to activate and use this control"
message appearing since april 2006 ie update (for winxp & win2k3)?
If it's so, try to paste this tiny code in the bottom of your page:

<script language="JavaScript" type="text/javascript"
src="NoIEActivate.js"></script>

"NoIEActive.js" file content:

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;
}}}


--- this is much smaller than Flash extension offers or try the original
one. Maybe it helps!



--
Posted via a free Usenet account from http://www.teranews.com
Re: Flash buttons behaving funny on IE 6 sp2 pelican
9/20/2006 2:22:07 PM
Re: Flash buttons behaving funny on IE 6 sp2 tvcr
10/3/2006 5:41:28 PM
this article might be of interest to you http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=e239aafd
AddThis Social Bookmark Button