Converting existing forms to the Flash forms

Ask a Question related to Macromedia ColdFusion, Design and Development.

  1. #1

    Default Converting existing forms to the Flash forms

    I have forms and I change all the tags on them, but they don't change to the new 'Flash forms' in CFMX 7. Any ideas on this?
    AkronNick Guest

  2. Similar Questions and Discussions

    1. FORMS - printing and emailing interactive forms
      I'm using Acrobat 7 Pro on a Mac 10.4.8. I would like to create an interactive (order) form for my client to post on her website which her...
    2. Flash Forms.....
      I was curious how to get a full date time in the <cfinput type="DateField"/> tag to give the time as well as the date. Is there a way to get the...
    3. CF and Flash Forms
      I think this is where I should be posting this since I am having a tough time in the other forums getting a solution. I'm working on some forms...
    4. Advanced>Forms>Export Forms Data is grayed out
      version 6.0.0 ¿ How do I activate this option ?
    5. appletviewr plus forms 9i - crash on forms service
      I'm trying to find workaround of the problem forms losing focus on IE6.0 on Windows XP using Jiniator. So I am trying to use appletviewer instead...
  3. #2

    Default Re: Converting existing forms to the Flash forms

    Without more information it's hard to make any suggestions.
    I'm assuming you're trying to change an HTML form to a CFML/Flash form. In the <CFFORM> tag do you have the 'format=flash' attribute set?
    gclausen Guest

  4. #3

    Default Re: Converting existing forms to the Flash forms

    Are you not allowed to put flash forms inside of table cells? And how do you
    add simple text to a form? Here is the regular form that I've tried to convert
    to flash forms, and yes I did change the format to Flash.. I have created other
    flash forms but found that the form wouldnt work inside of a table and I can't
    put any regular text in the form.. I don't get it, all I can make are cfform
    fields, etc but I can't add a piece of text to describe what the form input
    would be used for, etc.. Remember the following code is still in HTML because I
    couldn't get the cfform to work, and the code is inside a table cell.

    <form action="big6.cfm?validdistrict=yes" method="post" name="DistrictName"
    id="DistrictName">
    Select a district:
    <select name="big6_district" id="district">
    <cfoutput query="progmon_districts">
    <option
    value="#progmon_districts.District#">#progmon_dist ricts.District#</option>
    </cfoutput>
    </select>
    <input type="hidden" name="validdistrict" value="yes">
    <input type="submit" name="Submit" value="Enter Compliance Report">
    </form>

    AkronNick Guest

  5. #4

    Default Re: Converting existing forms to the Flash forms

    The <cfformitem> will do what you want
    gclausen 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