ciao a tutti, ho seguito alla lettera la guida di http://www.webmasterpoint.org/appunti/flash/121.asp, ma quando eseguo il filmato flash, l'unica cosa che mi visualizza e':
nome1
nome2
nome3
e non riesco a capire come mai.
il codice che ho associato al pulsante e':
codice:
on(release)
{
loader = new LoadVars();
loader.load("flash-estrarre.php");
loader.onLoad = function(success) {
if(success)
  {
  if(this.ok)
    {
_root.username.htmlText = "";
    _root.password.htmlText = "";
    _root.email.htmlText = "";
	 _root.name.htmlText = "";
	  _root.surname.htmlText = "";
	   _root.address.htmlText = "";
	    _root.sesso.htmlText = "";
		 _root.capelli.htmlText = "";
		  _root.occhi.htmlText = "";
    for(var j = 1; j <= this.i; j++)
       {
       _root.username.htmlText += eval("this.username" + j);
       _root.password.htmlText += eval("this.password" + j);
       _root.email.htmlText += eval("this.email" + j);
	   _root.name.htmlText += eval("this.name" + j);
       _root.surname.htmlText += eval("this.surname" + j);
       _root.address.htmlText += eval("this.address" + j);
	   _root.sesso.htmlText += eval("this.sesso" + j);
       _root.capelli.htmlText += eval("this.capelli" + j);
       _root.occhi.htmlText += eval("this.occhi" + j);
       }
    _root.output.text = "ok";
    }
  else
     {
     _root.username.htmlText = "";
     _root.password.htmlText = "";
     _root.email.htmlText = "";
	  _root.name.htmlText = "";
     _root.surname.htmlText = "";
     _root.address.htmlText = "";
	  _root.sesso.htmlText = "";
     _root.capelli.htmlText = "";
     _root.occhi.htmlText = "";
     _root.output.text = "error";
     }
  }
}
}
Ho messo dei campi dinamici con istanza username, password ecc ecc, ma mi da la stessa cosa