salve a tutti!! ho letto un pò velocemente questo post...e volevo chiedervi se posso applicare il file mail.php al mio template:
è il flash as2,c'è un file txt dove posso modificare alcuni parametri del sito,ma nella sezione email mi ritrovo scritto```
&mail_file=mail.php&
, il file mail.php non è compreso nel template,ma aprendo il file FLA l'action layer del form ha questo codice:
function ckform()
{
apos = t2.htmlText.indexOf("@");
dotpos = t2.htmlText.lastIndexOf(".");
pos = dotpos - apos;
if (pos > 1)
{
tmp = 1;
} // end if
if (pos < 2)
{
tmp = 0;
} // end if
trace (tmp);
txt2.htmlText = "";
if (t1.htmlText == "")
{
txt2.htmlText = "NAME IS REQUIRED.";
}
else if (t2.htmlText == "")
{
txt2.htmlText = "";
txt2.htmlText = "E-MAIL IS REQUIRED.";
}
else if (tmp == 0)
{
txt2.htmlText = "";
txt2.htmlText = "WRONG E-MAIL.";
}
else if (t3.htmlText == "")
{
txt2.htmlText = "";
txt2.htmlText = "TELEPHONE IS REQUIRED.";
}
else if (t4.htmlText == "")
{
txt2.htmlText = "";
txt2.htmlText = "MESSAGE IS REQUIRED.";
}
else
{
this.loadVariables(_root.mail_file, "POST");
} // end else if
} // End of the function
function ckfull(textObj)
{
TextInfo = "EXIT FULL-SCREEN MODE (ESC) TO ENTER TEXT";
if (Stage["displayState"] == "normal")
{
textObj.htmlText = "";
} // end if
if (Stage["displayState"] == "fullScreen")
{
textObj.htmlText = TextInfo;
} // end if
} // End of the function
this.onEnterFrame = function ()
{
this.ckfull(this.txt1);
};
t1.tabIndex = 1;
t2.tabIndex = 2;
t3.tabIndex = 3;
t4.tabIndex = 4;
cosa posso fare?