Groups | Blog | Home
all groups > coldfusion flash integration > april 2006 >

coldfusion flash integration : Latest IE and Coldfusion Flash



Brockley
4/24/2006 12:00:00 AM
I've noticed with the latest release of Microsoft Internet Explorer (6 SP2)
that you now have to double click on (coldfusion) Flash Forms to gain focus.
It didn't happen a couple of weeks ago and is not a problem with Firefox. I
guess the guys in Redmond have devised a way to make flash less friendly.

Is this a known problem? Is there a workaround? I'm using Coldfusion MX 7
running from XP as the Server.
doug777
4/25/2006 12:00:00 AM
This is the fix as posted on the m.c.rich_forms forum.

Doug

[quoted text, click to view]
GotJosh?
4/25/2006 5:59:58 PM
That custom tag doesnt work perfectly....

I am surprised that Adobe doesnt just patch CF7 like they did with Flex 1.5.

Anyone know at Adobe if this is going to happen? We should not be relaying on
Custom Tags to fix the way CF outputs content based on its server code. If the
environment changes, so should CF7... the developer community that uses it can
only do some much that custom tag is basically a bandaid.

Note: Its not working on my setup and I am working with the custom tag author
to get it working. So far its been unsuccessful.
mdarchives
4/25/2006 7:37:41 PM
Ben Forta's blog says "The good news is that the ColdFusion team is working on
a workaround to address this issue specifically for ColdFusion generated Flash.
The bad news is that it's still a few weeks away. Stay tuned, we'll post
specifics as soon as we have them."
GotJosh?
5/3/2006 4:08:07 PM
JohnLeger
5/6/2006 2:26:42 AM
There is fix that will work now and it's fairly simple. It requires two steps:

1. You have to place the following code inside but at the end of the BODY tag
on any page that uses macromedia Flash in any fashion inclucing Cold Fusion.
Copy and paste the following.

<script type="text/javascript" src="ieupdate.js"></script>

2. The create a java script file called "ieupdate.js" and place the following
code in it and place the file in the root directory of your web site.

theObjects = document.getElementsByTagName("object");
for (var i = 0; i < theObjects.length; i++) {
theObjects.outerHTML = theObjects.outerHTML;
}

Everything should work fine! It did not creat this fix, but can't rember
where I found it either.

John
;)
reya276
5/18/2006 2:38:06 PM
AddThis Social Bookmark Button