CFFORM Format Flash not work with IE

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

  1. #1

    Default CFFORM Format Flash not work with IE

    I saw that this request was responded previously by saying that when you cann
    see the form in Netscape but not in IE, that mean IE did not had access to
    appropriate scripts from the CFIDE. Well, okay but how ti give access to IE for
    that script?

    Also, I do not understand why I can see the flash-form in another page for the
    same website but not for one specific page with a much more simplier form-flash
    code:

    <cfform name="form1" action="whatever.cfm?#url.taid#" method="post"
    format="flash">
    <cftextarea name="fReason" label="Reason" required="yes" message="In order to
    reject a check request, you need to indicate a reason to be sent to the
    requester."></cftextarea>
    <cfinput type="submit" name="fSubmit" value="Submit" />
    </cfform>

    Thank's!


    francois-yanick Guest

  2. Similar Questions and Discussions

    1. Help CFFORM format flash with ActionScript
      Because the syntax getURL("http://www.macromedia.com", "_blank", "POST"); she is not being executed. I want that in case that returns 1 either...
    2. cfform format flash
      I am trying to read a small dbase with a name and a link. I am using cfform format flash. What i want is to able to click at the link which is...
    3. CFForm format=flash doesn't work in <Table>??
      I had done a test on <cfform format=flash>, and it doesnt work with <Table> What should I do....can Macromedia provide some tuitorial...
    4. CFFORM format=flash height = 100%?
      I have tried many of methods to get the CFFORM and elements (such as CFTREE or CFGRID) to fill 100% of available space, as the documentation says...
    5. cfselect in a cfform format=flash
      Has anyone been able to get the cfselect to validate in a html type of cfform. It works in flash, however, it does not work in html? <cfform...
  3. #2

    Default Re: CFFORM Format Flash not work with IE

    is your form inside of a table. IE has a problem loading plugins inside a
    table, when the plugins use percentages for the height/width. Try setting
    the h/w of your form and see if that does it.

    <cfform width="400" height="500">

    hth,
    ----nimer


    "francois-yanick" <fybourassa@ccemtl.org> wrote in message
    news:d1evir$5fu$1@forums.macromedia.com...
    >I saw that this request was responded previously by saying that when you
    >cann
    > see the form in Netscape but not in IE, that mean IE did not had access to
    > appropriate scripts from the CFIDE. Well, okay but how ti give access to
    > IE for
    > that script?
    >
    > Also, I do not understand why I can see the flash-form in another page for
    > the
    > same website but not for one specific page with a much more simplier
    > form-flash
    > code:
    >
    > <cfform name="form1" action="whatever.cfm?#url.taid#" method="post"
    > format="flash">
    > <cftextarea name="fReason" label="Reason" required="yes" message="In
    > order to
    > reject a check request, you need to indicate a reason to be sent to the
    > requester."></cftextarea>
    > <cfinput type="submit" name="fSubmit" value="Submit" />
    > </cfform>
    >
    > Thank's!
    >
    >

    Mike Nimer Guest

  4. #3

    Default Re: CFFORM Format Flash not work with IE

    Yes, I notices that problem about cfform inside table formatting. In this case,
    it is not inside the table. Actually, the page has no table. Just the cfform.
    Which had some weird illogic on top of the problem!!

    francois-yanick 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