Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
ArtNirvana #1
Dynamic Labels Flash CFMX7
Well, I've been working almost all of my datafield problems and I realized I
need to put info on the form that updates when a button is clicked. (the info
should just be a label - not an editable textbox)
How to I add a label that can be updated with the onclick event in a Flash
form?
Thanks
ArtNirvana Guest
-
labels in cf flash forms
:confused;I want to set the labels for all fields to be on the top of the field, like as possible with input type=image, but I want to do it for all... -
CFMX7 and dynamic query --Need to maintain single quotes
I have a cfquery select that is built from a search form. When the form is processed, it builds a searchstring like this: <cfset searchstring =... -
CFMX7 and Flash FLV
Anyone else having any issues getting flash video files to play in CFMX 7? I had everything work, upgraded to CFMX 7, and now only swf plays, no... -
Frame labels in Flash
Is there any equivalent actionScript to replicate any of the lingo commands below frameLabel, label(), marker(), markerList, and labelLis ... -
Dynamic add labels to a form.
I have this in code: Label myLabel1 = new Label(); myLabel1.Text ="Pick the Row you need changed in the Database"; myLabel1.Enabled = true; ... -
Ian O'Betz #2
Re: Dynamic Labels Flash CFMX7
I believe it's onclick="mydatafield.value = 'mylabel';">
You might need to have the attribute label="" in the datafield before you
are able to change the label. mydatafield.text (if I'm not mistaken) is the
value being passed.
--
Ian O'Betz
Clear Results Sytem Operator
[url]www.clearresults.net[/url]
"ArtNirvana" <webforumsuser@macromedia.com> wrote in message
news:cv6apg$5aq$1@forums.macromedia.com...
Well, I've been working almost all of my datafield problems and I realized I
need to put info on the form that updates when a button is clicked. (the
info
should just be a label - not an editable textbox)
How to I add a label that can be updated with the onclick event in a Flash
form?
Thanks
Ian O'Betz Guest
-
ArtNirvana #3
Re: Dynamic Labels Flash CFMX7
I think you misunderstood me, I didn't exactly write it out well.
I DO NOT want to use an editable text box or text field. I am trying to put
information on the form that I can update, but the user cannot (a text box
implies they should be able to edit it).
Hence, lables. (Not the label attribute of an editable textbox - a label all
by itself)
There are form element such as a CFFORMITEM that allows text content to be
added to a form; however, it seems to lack an ID or Name that I could reference
to dynamically update it.
How, do I add a label to a form that can by dynamically updated. For example,
a User ID is generally autmatically assigned - I want to display the ID as a
label and NOT as a text field or I may want one message to diaplay if option a
is selected or another if option b is selected.
Is there a way to refer to CFFORMITEM's to change their properties or is their
another element that works on FLASH forms that acts as a synamic label?
Thanks
ArtNirvana Guest
-
Mike Nimer #4
Re: Dynamic Labels Flash CFMX7
Simple answer - not directly.
You can bind a cfformitem to a variable (a hidden field) and then change the
value of the hidden field via actionscript.
or you can set editable="false" on a text field.
hth,
---nimer
"ArtNirvana" <webforumsuser@macromedia.com> wrote in message
news:cvd97i$mfa$1@forums.macromedia.com...>I think you misunderstood me, I didn't exactly write it out well.
>
> I DO NOT want to use an editable text box or text field. I am trying to
> put
> information on the form that I can update, but the user cannot (a text box
> implies they should be able to edit it).
>
> Hence, lables. (Not the label attribute of an editable textbox - a label
> all
> by itself)
>
> There are form element such as a CFFORMITEM that allows text content to be
> added to a form; however, it seems to lack an ID or Name that I could
> reference
> to dynamically update it.
>
> How, do I add a label to a form that can by dynamically updated. For
> example,
> a User ID is generally autmatically assigned - I want to display the ID as
> a
> label and NOT as a text field or I may want one message to diaplay if
> option a
> is selected or another if option b is selected.
>
> Is there a way to refer to CFFORMITEM's to change their properties or is
> their
> another element that works on FLASH forms that acts as a synamic label?
>
> Thanks
>
Mike Nimer Guest



Reply With Quote

