1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
| stop();
fullName_txt.tabIndex=1;
email_txt.tabIndex=2;
comments_txt.tabIndex=3;
submit_btn.onRelease=function () {
var my_lv:LoadVars = new LoadVars();
my_lv.fullName = fullName_txt.text;
my_lv.email = email_txt.text;
my_lv.comments = comments_txt.text;
if (fullName_txt.text !="" && email_txt.text !="" && comments_txt.text !=""){
my_lv.send("C'EST ICI QUE JE SUIS BLOQUE, QUE METTRE POUR LE RECEVOIR A MON ADRESSE EMAIL???","_blank","POST");
gotoAndPlay ("success");
}
else
{
gotoAndPlay ("error");
}
} |
Partager