You can set an id attribute of the accordions and tabnavigator cfformgroups, not the other types. You can then access these by the id.
Hth, ---nimer -----Original Message----- From: David Brown [mailto:[EMAIL PROTECTED] Sent: Thursday, March 03, 2005 3:42 PM To: CF-Talk Subject: Re: Binding Flash Form Thanks for the info. I see that you use the name of the input or textarea to reference it. How would you reference a cfformgroup object? ----- Original Message ----- From: "Sean Corfield" <[EMAIL PROTECTED]> To: "CF-Talk" <[email protected]> Sent: Wednesday, March 02, 2005 5:14 PM Subject: Re: Binding Flash Form > On Wed, 2 Mar 2005 16:08:46 -0500, David Brown <[EMAIL PROTECTED]> wrote: >> I would like to evaluate the value on a flash form CF MX 7 <cfform >> format="flash"> in a cfif statment to decide if I should make a >> cftextarea >> visiable or not. > > <cfif> works on the server. You need something that works in Flash. > This will do what you want: > > <cfform format="flash"> > <cfformgroup type="vertical"> > <cfformitem type="text" >Downtime Required</cfformitem> > <cfinput type="text" required="yes" name="DowntimeHours" > label="Hours" size="3" onchange="if (DowntimeHours.text > 2) > Note1.visible = true; else Note1.visible = false;" > > <cfinput type="text" required="yes" name="DowntimeMin" > label="Minutes" size="3" > > </cfformgroup> > <cfformitem type="hrule" /> > <cftextarea name="Note1" value="Downtime requiring more than 2 hours > needs a detailed explanation!" height="50" width="700" disabled="No" > required="No" enabled="Yes" visible="false"></cftextarea> > </cfform> > -- > Sean A Corfield -- http://www.corfield.org/ > Team Fusebox -- http://www.fusebox.org/ > Breeze Me! -- http://www.corfield.org/breezeme > Got Gmail? -- I have 49, yes 49, invites to give away! > > "If you're not annoying somebody, you're not really alive." > -- Margaret Atwood > > ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Discover CFTicket - The leading ColdFusion Help Desk and Trouble Ticket application http://www.houseoffusion.com/banners/view.cfm?bannerid=48 Message: http://www.houseoffusion.com/lists.cfm/link=i:4:197586 Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4 Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4 Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4 Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

