Internet Explorer doesn't handle Flash Form on a singlepage

Ask a Question related to Coldfusion Flash Integration, Design and Development.

  1. #1

    Default 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

  2. Similar Questions and Discussions

    1. 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...
    2. 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
    3. 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...
    4. 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...
    5. 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...
  3. #2

    Default 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

  4. #3

    Default 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

  5. #4

    Default 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

  6. #5

    Default 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

Posting Permissions

  • You may not post new threads
  • You may post replies
  • You may not post attachments
  • You may not edit your posts

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139