Cold Fusion MX7 Flash Forms

Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.

  1. #1

    Default Cold Fusion MX7 Flash Forms

    :frown;

    My flash forms are displaying fine [localhost], but as soon as I upload the
    form to server and request it, my info between cfselect tag does not display at
    all????

    My code sample:

    <cfselect name="To" size="1">
    <option value="Value">Label1</option>
    <option value="Value">Label2</option>
    <option value="Value">Label3</option>
    </cfselect>

    Any help out there???!!

    001234232425 Guest

  2. Similar Questions and Discussions

    1. HELP! Flash Slideshow and Cold Fusion
      Hey everybody, I am new to the scene of Flash and Cold Fusion scripting... well not so new with CF, but with Flash. Im in a pickle over here and...
    2. Flash bringing down Cold Fusion services
      I have a Flash site that has some video streaming and the site seems to have problems on my server where it takes down other programs on my Windows...
    3. Is Flash Remoting supported - without Cold Fusion?
      Will Flex 2 apps be able to consume Flash remoting services - without using Cold Fusion? We have a lot of these that have been coded in .Net...
    4. Cold Fusion MX 7 and Flash 8
      Anyone know of any books coming out soon that deal with CFMX7 and integrating Flash 8 with it? PedroAlberto
    5. Cold Fusion 5 and Flash
      I was wondering how I can pass cfquery info via cfoutput to a flash file. I am new to Flash and am not sure how to pass varibles to Flash. I want...
  3. #2

    Default Re: Cold Fusion MX7 Flash Forms

    Did you try it with simple html selects?
    I never used (never saw any sence of) Flash forms.
    Der Nickname Guest

  4. #3

    Default Re: Cold Fusion MX7 Flash Forms

    YES! Copied code from a friend aswell and still nothing? Running IIS6 2003 server.
    001234232425 Guest

  5. #4

    Default Re: Cold Fusion MX7 Flash Forms

    This seemed to work for me.

    <cfformitem type="html">

    <cfselect name="To" size="1">
    <option value="Value">Label1</option>
    <option value="Value">Label2</option>
    <option value="Value">Label3</option>
    </cfselect>

    </cfformitem>

    SharedDynamics Guest

  6. #5

    Default Re: Cold Fusion MX7 Flash Forms

    Do you have Flash forms working okay on the server? I ask, because the first
    time I played with flash forms, I had everything working okay on the dev but
    not on the production server. The problem was with the location of the
    /CFIDE/scripts folder...

    dnaguy 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