Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
pushinluck #1
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
-
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... -
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... -
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... -
background color?
any way to use tiled wallpaper image instead of choosing regular background colors? -
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... -
existdissolve #2
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



Reply With Quote

