Sou leigo em programação portanto não sei como juntar o php ao flash agora pois o tuto que peguei so me trouxe até aquui estou usando o flash do cs4
vou postar meu codigo se alguem puder me ajudar sou muito grato !
rec="crash_heart@hotmail.com";
serv="php";
var fields_descriptions= Array ("",
Array("t1", "your_name", "Seu Nome:"),
Array("t2", "your_company", "Empresa:"),
Array("t3", "phone", "Telefone:"),
Array("t4", "message", "Menssagem:"),
Array("t5", "your_email", "E-mail:"),
Array("t6", "field_3", "Endereço:"),
Array("t7", "field_4", "fax:")
);
function reset_txt(name,name2,value) {
path=eval(_target);
path[name2]=value;
this[name].onSetFocus=function() {
path=eval(_target);
if(path[name2]==value) { path[name2]="";}
}
this[name].onKillFocus=function() {
path=eval(_target);
if(path[name2]=="") { path[name2]=value;}
}
}
for (i=1; i<=fields_descriptions.length; i++) {
reset_txt("t"+i, fields_descriptions[i][1], fields_descriptions[i][2]);
}










