Flash form background color

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

  1. #1

    Default Flash form background color

    How can I change the background color in a flash form? My current form settings
    do not work.

    <cfform name="Submit"
    format="flash"
    width="270"
    height="150"
    skin="halosilver"
    action="search1.cfm"
    method="post">

    pushinluck Guest

  2. Similar Questions and Discussions

    1. FORM - TEXT FIELD Background Color
      The FORM - TEXT FIELD BACKGROUND colour sometimes defaults to YELLOW and sometimes not depending upon the words that precede it. Using CSS Styles...
    2. Flash background not matching HTML and .gif color
      I want you to look at something if you have a chance. www.forestsaver.com/new/index.html The top navigation consists of six flash movies with...
    3. How to get the background-color of flash movie by actionscript?
      I want to know how to get the background-color of flash movie by actionscript. I searched actionscript reference all the day... But I found only...
    4. background color?
      any way to use tiled wallpaper image instead of choosing regular background colors?
    5. flash movie with transparent background color
      Is it possible to have a fully transparent background color in flash - it only allows you to select a solid color. I would like to set it up similar...
  3. #2

    Default Re: Flash form background color

    You can simply apply style="background-color:##000000" to change your
    background color (where "000000" is your color).

    Note: You'll want to be sure to escape out the "#" with a double "##" or else
    your form will throw an error.

    So you finished code might look like this:


    Be sure to check out

    [url]http://livedocs.adobe.com/coldfusion/7/htmldocs/wwhelp/wwhimpl/common/html/wwhel[/url]
    p.htm?context=ColdFusion_Documentation&file=000006 77.htm for a robust listing
    of styles that can be applied to various cfform elements.



    <cfform name="Submit"
    format="flash"
    width="270"
    height="150"
    skin="halosilver"
    action="search1.cfm"
    method="post"
    style="background-color:##EDEDED">

    existdissolve 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