I'm sure there is a really easy way to do this but I can't work it out.
I am trying to recreate an HTML form in Flash 5 but what is the best way to send the variables?
The user must fill in several Text Input boxes and then the content of these must be sent along with the values of several 'hidden' Input fields. Also the variables must be URL encoded on submission.
I tried using the getURL command but I don't think it worked.
Incase this makes it clearer, here is the Form Action I wish to recreate and the variables that must be sent:
form action=" enctype="multipart/form-data" method="get" target="frame2"
input name="Type" type="hidden" value="text"
input name="Text" type="hidden" value="text"
input name="UserName" type="hidden" value="whatever"
input name="Passwd" type="hidden" value="whatever"
input name="Msg" type="text" value=" "
input name="Destination" type="text" value=" "
The first 4 variables always have the same value but the user determines the last two.
Should I use getURL, loadVariables, FSCommand or loadMovie?
Thanks,
I am trying to recreate an HTML form in Flash 5 but what is the best way to send the variables?
The user must fill in several Text Input boxes and then the content of these must be sent along with the values of several 'hidden' Input fields. Also the variables must be URL encoded on submission.
I tried using the getURL command but I don't think it worked.
Incase this makes it clearer, here is the Form Action I wish to recreate and the variables that must be sent:
form action=" enctype="multipart/form-data" method="get" target="frame2"
input name="Type" type="hidden" value="text"
input name="Text" type="hidden" value="text"
input name="UserName" type="hidden" value="whatever"
input name="Passwd" type="hidden" value="whatever"
input name="Msg" type="text" value=" "
input name="Destination" type="text" value=" "
The first 4 variables always have the same value but the user determines the last two.
Should I use getURL, loadVariables, FSCommand or loadMovie?
Thanks,