PDA

View Full Version : CGI & Flash Help!!!


Agostino
10-10-2002, 09:39 PM
OK, I have a mail form that is working well (HTML)
now I want to make it work thru flash but is not working
and I don't know well which things I should replace or change to make it work..

here what I did...

fragment of the working html
------------------------------------------
="Bookman Old Style" size="3" color="#FFFFFF">Complete el siguiente
formulario y luego presione el bot&oacute;n &quot;enviar&quot;.<br>
La informaci&oacute;n ser&aacute; procesada a la brevedad.</font></p>
<form method="post" action="http://www.sinectis.com.ar/cgi-bin/FormMail.pl">
<input name="MailTo" type="HIDDEN" value="ytsejam@fibertel.com.ar">
<input name="Subject" type="HIDDEN" value="Cliente desde la web">
<input name="Redirect" type="HIDDEN" value="http://www.teco.com/confirma.html">
<table cellspacing="0" cellpadding="0" border="0">
<tr>

---------------------------------------------------------------


flash:
---------------------------------------------
on (release) {
subject = "Cliente desde la web";
recipient = "ytsejam@fibertel.com.ar";
loadVariablesNum ("http://www.sinectis.com.ar/cgi-bin/FormMail.pl", 0, "GET");
gotoAndPlay ("gracias");
}
----------------------------------

this is all I did. what else I should change?? I don't have a clue.
should work like this?
I know nothing about Cgi btw..
so what is wrong?

Thanks!!

Jesse
10-12-2002, 01:48 AM
Based on the HTML code you showed there, it doesn't look like you've kept the variable names the same... have you seen this tute http://www.actionscripts.org/tutorials/beginner/html_forms/index.shtml ?