Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
ptoretti #1
Using CFSAVECONTENT with CFFORMITEM type="HTML"
I am trying to create a preview area made up of a mix of HTML and cfform
variables in a binding string. This is similar to the ASFusion article in
ColdFusion Journal. I conceptually understand how to do this, but I think that
the syntax is getting me. What I'm trying to show is a table using a backround
image with styled text over the image. I'm getting the text, but it is not
styled, the image does not appear and my link does not show as a link.
Here's my code:
<cfsavecontent variable="featureBind">
{(
("<table><tr><td width='330' height='257' align='left' valign='middle'
nowrap'") +
("background='" + photo_url.text + "'>") +
("<table width='330'><tr><td align='left'><br /><p class='featureHd'>") +
("<font color='" + headline_color.text + "'>" + headline_text.text +
"</font> </p>") +
("<font color='" + body_text_color.text + "'>" + body_text.text +
"</font></p><br />") +
("<a href='" + link_url.text + "' CLASS='featureLink_light'>") +
("<font color='" + link_color.text + "'>" + link_text.text +
"</font></a></td>") +
("</tr></table></td></tr></table>")
)}
</cfsavecontent>
...
<cfformgroup type="panel" label="Preview" >
<cfformitem type="html" height="257" width="330"
bind="#featureBind#"></cfformitem>
</cfformgroup>
Can anyone help?
Thanks,
Patty
ptoretti Guest
-
cfformitem type="script": How to set hidden field'svalue?
I have a simple test form that contains a cftree and a few input/hidden fields. Whenever a tree node is selected, I want to change the values of... -
cfformitem type="html"
I am having sound trouble using the above tag to display images... Using fusebox 3, getting a prod. description from a database, which includes a... -
<cfformitem type ="script">???
Hi all I am having difficulties with an app that i downloaded from asfusion.com. The apps url is http://www.asfusion.com/apps/realestate/... -
html <input type="file"> can you set a value first ?
There has GOT to be a way. I'm not gonna give up. -
CFINPUT type="radio" w/ "value" requires "label"
On a Flash form, when you specify type='radio' and value='whatever', the value of the 'value' attribute will be displayed as a label if no 'label'... -
ptoretti #2
Re: Using CFSAVECONTENT with CFFORMITEM type="HTML"
I got this question answered over at [url]http://livedocs.macromedia.com/flash/mx2004/main_7_2/00001040.html[/url]
Thanks Laura and Nahual for providing us such a fabulous resource with your blog.
ptoretti Guest



Reply With Quote

