Flash Form not Showing

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

  1. #1

    Default Flash Form not Showing

    Just upgraded from CF MX 6 to MX 7. Trying out flash forms, but they are not
    working.

    I tried out a simple First Name, Last name, Submit form setting the form to
    flash. When viewing the page in Safari, Firefox on a Mac and IE in Windows the
    page is blank. If I set take out the flash tag and just leave it as a CFForm it
    shows perfectly in all browsers. All browsers are able to view flash and
    shockwave files.

    Not sure what is going on.

    Any ideas?

    Thanks.

    mishuno Guest

  2. Similar Questions and Discussions

    1. FLASH MOVIE NOT SHOWING
      I have a Flash movie on a Dreamweaver page. I'm assuming it's the only way to publish a FLASH site. I'm not a coder by any means and am having...
    2. flash hot showing ion IE6
      Flash animations do not show up on IE6 web pages when I'm logged into Win XP on a non-admin account. I just get the red x placeholder. When I log...
    3. IE stopped showing Flash
      I have been experiencing a frustrating problem with Internet Explorer. Flash just quit working in IE. I was prompted to install Flash player 8 and...
    4. showing form, based on SQL
      Hi Everybody I am building a site using ASP and vbscript. On one particular page I have two recordsets, and depending on what is selected on...
    5. tool box not showing in form design
      Access 2000. Toolbox not showing in form design even if you select from view menu. -Persistent with all database -But can be displayed on other...
  3. #2

    Default Re: Flash Form not Showing

    code?
    Chuck1411 Guest

  4. #3

    Default Re: Flash Form not Showing

    Code:
    <CFFORM format="flash" width=500"
    <cfinput type="text" name= "firstname">
    <cfinput type="text" name="lastname">
    <cfinput type="submit" name="submit" value="save"
    </CFFORM>

    If I leave as is I get a blank page.

    If I take out the format="flash" statement, the fields and submit button show
    fine.

    mishuno Guest

  5. #4

    Default Re: Flash Form not Showing

    Hello

    Have you try to put the height statement on the cfform tag?



    mishuno wrote:
    >Code:
    > <CFFORM format="flash" width=500"
    > <cfinput type="text" name= "firstname">
    > <cfinput type="text" name="lastname">
    > <cfinput type="submit" name="submit" value="save"
    > </CFFORM>
    >
    > If I leave as is I get a blank page.
    >
    > If I take out the format="flash" statement, the fields and submit button show
    >fine.
    YodaOne Guest

  6. #5

    Default Re: Flash Form not Showing

    have you tried putting a name for the form, i have noticed that sometimes its needed.
    Pathel Guest

  7. #6

    Default Re: Flash Form not Showing

    I am having the exact same issue. I have tried tutorial code from several
    sites. I have added a name to my form. I checked to make sure my CFIDE
    directory is mapped in my CFADMIN. I don't know what else to try. Right now I
    have the exact same code for testing as mishuno has. If i remove the type
    attribute I see a form. If I add back in "format="flash"" I don;t see anything
    on the screen but I do see flash code in the page source. HELP!!!!

    <CFFORM width="500" name="testForm">
    <cfinput type="text" name= "firstname" label="First Name">
    <cfinput type="text" name="lastname" label="Last Name">
    <cfinput type="submit" name="submit" value="save">
    </CFFORM>

    -Phil :sad;

    pmolaro@pstrat Guest

  8. #7

    Default Re: Flash Form not Showing

    I fixed my problem by un-installing and re-installing CF on my server.
    mishuno 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