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

  1. #1

    Default Flash Forms

    I am looking at using flash forms but if I drag a window onto the
    stage and then put text into it just goes behind it.

    Anyone got a beginners guide? Is it all done with action script or at
    author time. There seems very little info in any coarse or on the net
    about flash forms( I mean flash forms as in new file and then choose
    forms)

    Samuria Guest

  2. Similar Questions and Discussions

    1. Flash Forms Help
      When using flashing forms along with tab navigation, is there a way to set which tab to be active upon loading the form? For instance I have a...
    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. 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?
    4. EMBEDDING FLASH MOVIES INTO FLASH FORMS
      Is there a way? EMBEDDING FLASH MOVIES INTO FLASH FORMS
    5. Can you use flash forms on a cd
      Hi, I want to create a form on a cd that the customer can fill in and send the information to us. Does anyone know how to get the information sent...
  3. #2

    Default Flash Forms

    Ok I've got the following test form working almost. Whenever I used a value in
    bracket notation as the value for the cfinput element all the checkboxes are
    checked. Even if I specifically set the checked attribute to no. Can anyone
    shed some light on how to have them not checked?

    <cfquery name="qry" datasource="cfbookclub">
    SELECT AUTHORID, FIRSTNAME, LASTNAME, BIO, ISSPOTLIGHT FROM AUTHORS ORDER BY
    AUTHORID ASC
    </cfquery>

    <h2>cfformgroup Example</h2>
    <cfif IsDefined("form.oncethrough")>
    <h3>The form submitted the following information to ColdFusion MX:</h3>
    <cfdump var="#form#"><br><br><br>
    </cfif>

    <h3>A Flash form using cfformgroup tags</h3>
    <cfform name="myform" height="450" width="500" format="Flash">
    <cfformitem type="text" height="20">
    Fruits:
    </cfformitem>
    <cfformgroup type="tile" width="200" label="Tile box">
    <cfformgroup type="repeater" query="qry">
    <--- Flash requires unique names for all controls --->
    <cfinput type="Checkbox" name="chk1"
    Label="{qry.currentItem.FIRSTNAME}" value="qry.currentItem.AUTHORID}">
    </cfformgroup>
    </cfformgroup>

    <cfformgroup type="horizontal">
    <cfinput type = "submit" name="submit" width="100" value = "Show
    Results">
    <cfinput type = "reset" name="reset" width="100" value = "Reset
    Fields">
    <cfinput type = "hidden" name="oncethrough" value = "Yes">
    </cfformgroup>
    </cfform>


    freyacomm Guest

  4. #3

    Default 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 time
    with a possible DateFormat?

    Thanks,
    Geno


    genegodsey 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