ActionScriptNovice
Instructor
Hello Gurus, I'm very new to flash and probably dont know all the words needed to search for the right solution are, so my appologies if this is very obvious.
I have a working HTML form that uses the post method to send variables to an asp page on a server that I do not have access to change in any way.
<form method="POST" action=" name="form1">
It also uses some hiden fields (they told me to include them)
<input type="hidden" name="redirect" value=" <input type="hidden" name="subject" value="Contact Form from website"/>
<input type="hidden" name="recipient">
<input type="hidden" name="sort" value="Name,Company,Email,Telephone,Message" />
it uses a drop combo box to select different email addresses to send to
<select name="recipient" id="recipient">
<option value="simon@chilli-images.com">simon</option>
<option value="Matt@chilli-images.com">Matt</option>
<option value="enquiries@chilli-images.com">enquiries</option>
<option value="email@asabeaumont.co.uk">web design</option>
</select>
However I would like to make the form in flash and use 4 radio buttons to select one of the 4 email recipients.
The group of the 4 radio buttons i have called recipients and I have assigned a data value of the email addresses to each one of them.(the email address)
Do I have to include all of the hidden input types that I was advised to use for the HTML form if so where would I put all of these in the flash movie and how do I correcly assign the email form to select the correct address from a radio button?
Is it true that it will only work if uploaded to the server?
These are the text field I would like to use Name,Company,Email,Telephone,Message
This is very much appreciated if anyone could help me thankyou.
I have a working HTML form that uses the post method to send variables to an asp page on a server that I do not have access to change in any way.
<form method="POST" action=" name="form1">
It also uses some hiden fields (they told me to include them)
<input type="hidden" name="redirect" value=" <input type="hidden" name="subject" value="Contact Form from website"/>
<input type="hidden" name="recipient">
<input type="hidden" name="sort" value="Name,Company,Email,Telephone,Message" />
it uses a drop combo box to select different email addresses to send to
<select name="recipient" id="recipient">
<option value="simon@chilli-images.com">simon</option>
<option value="Matt@chilli-images.com">Matt</option>
<option value="enquiries@chilli-images.com">enquiries</option>
<option value="email@asabeaumont.co.uk">web design</option>
</select>
However I would like to make the form in flash and use 4 radio buttons to select one of the 4 email recipients.
The group of the 4 radio buttons i have called recipients and I have assigned a data value of the email addresses to each one of them.(the email address)
Do I have to include all of the hidden input types that I was advised to use for the HTML form if so where would I put all of these in the flash movie and how do I correcly assign the email form to select the correct address from a radio button?
Is it true that it will only work if uploaded to the server?
These are the text field I would like to use Name,Company,Email,Telephone,Message
This is very much appreciated if anyone could help me thankyou.