Ho una form fatta in flash, ha sempre funzionato ma con aruba no,
come posso risolvere il problema senza rifare tutto il codice da capo
invia_deu.onRelease = function(){
if(_root.vorname.text<> "" & _root.name.text<> "" & _root.strasse.text<> "" & _root.postleitzahl.text<> "" & _root.stadt.text<> "" & _root.land.text<> "" & _root.telefon.text<> "" & _root.fax.text<> "" & _root.email.text<> ""){
var no:Tween = new Tween(_root.compilare_deu, "_alpha", mx.transitions.easing.Regular.easeOut,_root.compil are_deu._alpha,0,.1, true);
var si:Tween = new Tween(_root.inviato_deu, "_alpha", mx.transitions.easing.Regular.easeOut,0,100,2, true);
var sendMail:LoadVars = new LoadVars();
sendMail.vorname = vorname.text;
sendMail.name = name.text;
sendMail.mittente = email.text;
sendMail.strasse = strasse.text;
sendMail.postleitzahl = postleitzahl.text;
sendMail.stadt = stadt.text;
sendMail.land = land.text;
sendMail.telefon = telefon.text;
sendMail.fax = fax.text;
sendMail.email = email.text;
sendMail.destinatario = '*@*';
sendMail.onLoad = function(success){
if(success){
vorname.text = '';
name.text = '';
strasse.text = '';
postleitzahl.text = '';
stadt.text = '';
land.text = '';
telefon.text = '';
fax.text = '';
email.text = '';
mcMsg.mcTxt.txtMsg.text = this.controllo;
mcMsg.play();
}
}
sendMail.sendAndLoad('http://www.***.com/_demo/***/email_deu.php', sendMail, 'POST');
}
}
}