Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
InfoCon_Brian #1
Internet Explorer doesn't handle Flash Form on a singlepage
On FireFox 2.0.0.12 (Linux), the attach code displays two accordions.
On Internet Explorer 7 (Windows XP), only one accordion is displayed.
First, How do I determine if this Internet Explorer or a Flash error?
Second, Is there a fix?
<!--- Code --->
<!---
Name: Sample.cfm
--->
<cffunction access="private" name="WriteBookFlashSample" returntype="void">
<cfargument name="ProcessingName" required="true" type="String" >
<cfargument name="Catalog" required="true" type="String" >
<cfoutput>
<!--- Traverse through all of the Books in each processing queue for the given
processing type --->
<div style="background-color:##BDDFff">#ProcessingName# - 1</div>
<cfform format="flash" method="POST" skin="haloBlue" >
<cfformgroup type="accordion">
<cfformgroup type="page" label="#Catalog# - 'title'">
<cfformitem type="html">
Catalog Number: #Catalog#<br />
Title: title<br />
Queue: #ProcessingName#<br />
</cfformitem>
</cfformgroup>
</cfformgroup>
</cfform>
</cfoutput>
</cffunction>
<html>
<head>
<title >Sample</title>
</head>
<cfoutput>
<body >
<cfform id="Main" name="Main" action="Sample.cfm" method="POST">
<cfinvoke
method="WriteBookFlashSample"
ProcessingName="First"
Catalog="555-55555-5555">
<cfinvoke
method="WriteBookFlashSample"
ProcessingName="Second"
Catalog="777-7777-7777">
</cfform>
</body>
</cfoutput>
</html>
InfoCon_Brian Guest
-
Flash errors in internet explorer
I'm a newbie in flash. I finished my degree about 3 months ago and have been learning Flash with Actionscript since. I am going crazy because no... -
Internet Explorer 7 and Flash
Why won't IE7 let me install flash player? I keep clicking 'allow active x' but it doesn't allow the installation. Help -
Flash 9 problem with Internet Explorer
When I play Bicycle Texas Hold'em on MSN games, it never fails that IE gives me an error message about Flash 9. This causes IE to close out in the... -
mailto handle and internet explorer - bug ?
i have this weird problem when using the mailto handle with internet explorer 6.0 (sp2 + updates). whenever i insert a text or a button based... -
Internet Explorer Window Form User Control - Embed - Urgent
Hi, This is URGENT, THANKS! Without getting into the "why", here's what I'd like to do, followed by where I am: 1. I would like to embed an... -
Daverms #2
Re: Internet Explorer doesn't handle Flash Form on asingle page
Hi,
Which version of CF you are using there?.. If this is because of any recent
migration (like from MX7 to 8) then try replacing the "Scripts" directory from
CF8 with the one you have with MX7.
HTH
Daverms Guest
-
InfoCon_Brian #3
Re: Internet Explorer doesn't handle Flash Form on asingle page
ColdFusion version 8 Developer's Edition on Fedora Linux 32-bit.
This is not an upgrade from any previous version to version 8.
Firefox displays both accordions perferctly.
InfoCon_Brian Guest
-
Daverms #4
Re: Internet Explorer doesn't handle Flash Form on asingle page
Hi,
Try adding,
style="margin-top:0; margin-bottom:0"
to your <cfformitem type="html"> tag and have a try again...
Daverms Guest
-
InfoCon_Brian #5
Re: Internet Explorer doesn't handle Flash Form on asingle page
Ok, that did it.
Is there any reason as to why there is such a large "gap" between controls?
Thanks
InfoCon_Brian Guest



Reply With Quote

