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 biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

passing variables within flash

Status
Not open for further replies.

ncar35b

Technical User
Jan 10, 2003
55
US
Hello. I'm new to flash and would like to create a form with a few text fields and a submit button. I'd like the variables collected in the form to be displayed later in the flash movie. Can anyone point me in the right direction on how to do this?
 
Thanks ConeHead. Wouldn't I need to somehow create a "submit" button? I know how to create a button, but I'm not sure how to associate it with the text fields that were filled out.
 
make this button action:

button.onRelease = function() {
_root.variableName = textFieldName.text;


}

And you can add whatever else also --- any calls to other pages or whatever

[conehead]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top