Hi,
I have created a flash form that allows a user to type in text that
automatically fills in on the same page using bind. Bind does not seem to work
the same way for a tag style. Here is an example:

Below is a flash form field that allows a user to select a font:
<cfselect name="fonttype" size="3" query="fonts" value="Font" display="Font"
style="alternatingRowColors:##FFFFFF, ##666666"></cfselect>

For example the user selects Tahoma.

What I am trying to do is change the style for the font on the fly.
<cfformitem type="text" name="companyname" style="
font-family : '"bind="{companyname.text}"':
font-size : 16pt;
font-style : bolder;
line-height : 12pt;
font-weight : bold;
font-variant : normal;
text-transform : capitalize;
color : 000000;
text-decoration : none;
text-align : right; border-style: solid;"
bind="{companyname.text}" ></cfformitem>

I have not worked with CF for awhile and can't remember or find an example or
tag that has this type of result. Any advice I can get would be great. Also
let me know if you have any questions about this post.

Thanks!