Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ActionScript for Flash Form Documentation?

Status
Not open for further replies.

naumanne

Programmer
Oct 1, 2004
5
US
Where could I find a list of the ActionScript attributes and functions for the various form objects, for use in onChange scripts, etc.? I can't find one for the life of me.
 
you can try an action script/flash forum for starters.

If you don't ask the right questions, you don't get the right answers. A question asked in the right way often points to its own answer. Asking questions is the ABC of diagnosis. Only the inquiring mind solves problems.

-Quote by Edward Hodnett
 
Cute, but I'm asking here because I'm talking about ColdFusion Flash-based forms.

For example - say I've got a <cfgrid>, and when I click on a row, I have it populate a bunch of <cfinput>'s below the grid. That's easy enough with text boxes, but I want to use a radio button for one of the fields. So, I need to know how to see which button in a set is checked, and how to check/uncheck them.

What I'm really looking for is a source for this type of info. ActionScript-centric sources I've checked haven't been useful, so I'm wondering if there's a web site out there where they describe the various things you can do with ActionScript within the bounds of ColdFusion tags.
 
according to livedocs
onKeyUp = "JavaScript or ActionScript"
onKeyDown = "JavaScript or ActionScript"
onMouseUp = "JavaScript or ActionScript"
onMouseDown = "JavaScript or ActionScript"
onChange = "JavaScript or ActionScript"
onClick = "JavaScript or ActionScript"

as for the actual actionscript, my guess is you can use any valid actionscript. if you don't know actionscript check the flash forum.

If you don't ask the right questions, you don't get the right answers. A question asked in the right way often points to its own answer. Asking questions is the ABC of diagnosis. Only the inquiring mind solves problems.

-Quote by Edward Hodnett
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top