OK please help, Im really really new to actionscript but i have been working with flash for a while.
Ive been trying to make a flash subscription form to my mailing list through PHP but i cant get it to work. Ive designed one in html:
<form action=“listmessenger.php” method=“post”>
<table cellspacing=“1” cellpadding=“1” border=“0”>
<tr>
<td><font face=“Comic Sans MS” size=“2”>E-mail Address: </font></td>
<td> <font face=“Comic Sans MS” size=“2”>
<input type=“text” name=“email_address” value="" />
</font></td>
</tr>
<tr>
<td><font face=“Comic Sans MS” size=“2”>Full Name: </font></td>
<td> <font face=“Comic Sans MS” size=“2”>
<input type=“text” name=“full_name” value="" />
</font></td>
</tr>
<tr bordercolor=“1”>
<td> <div align=“center”><font face=“Comic Sans MS” size=“2”>Subscribe:<br>
<input type=“radio” name=“action” value=“subscribe” CHECKED/>
</font></div></td>
<td> <div align=“center”><font face=“Comic Sans MS” size=“2”>UnSubscribe: <br>
<input type=“radio” name=“action” value=“unsubscribe” />
</font></div></td>
</tr>
<tr>
<td colspan=“2” align=“right”> <font face=“Comic Sans MS” size=“2”>
<input type=“hidden” name=“group_ids[]” value=“Laws of Shotgun 1 (ID:1)” />
<input type=“submit” name=“submit” value=“Proceed” />
</font></td>
</tr>
</table>
</form>
How could i translate this script to flash? And make it work. THe way it currently works is that the php script controls everything and opens a new page “template.html” on your status.
Pease help im going nuts and i cant find any templates for this kind of form.