Groups | Blog | Home
all groups > coldfusion flash integration > march 2006 >

coldfusion flash integration : Text Layout In Flash Form


sharmstr14
3/15/2006 8:44:10 PM
I've serached for an answer and cant seem to find a way to control where text
is displayed on my flash form. Basically I want 2 columns of text with a
header for each. Since there is no table support, I was attempting to use
"textformat indent", but I cant seem to get it to work correctly. Any help is,
of course, appreciated. Here's what I've been attempting

<cfformitem type="html">
<textformat indent="5"><b>Core Name</b></textformat><textformat
indent="200"><b>Build Cost</b></textformat><br />
<textformat indent="5">Name 1</textformat><textformat indent="200">Cost
1</textformat><br />
<textformat indent="5">Name 2</textformat><textformat indent="200">Cost
2</textformat><br />


[Thanks
doug777
3/17/2006 12:00:00 AM
I haven't tried it, but perhaps this works:

<cfformgroup type="horizontal">
<cfformitem type="html">
<strong>Core Name</strong><br />
Name 1<br />
Name 2<br />
<cfformitem>
<cfformitem type="html">
<strong>Build Cost</strong><br />
Cost 1<br />
Cost 2<br />
<cfformitem>
</cfformgroup>

sharmstr14
3/17/2006 6:00:22 PM
AddThis Social Bookmark Button