I'm sorry:
the output workd and gave nero
but do not show the mc back
if (success) {
testo.text =this.childNodes[0].childNodes[0].firstChild;
name = this.childNodes[0].childNodes[1].firstChild
trace(name) //should output-> hero
_root.attachMovie(name, name, 100, {_x:100, _y:100})
testo3.text =this.childNodes[0].childNodes[2].firstChild;
}
};
I repeat: the output (ctrl+emter( gave a bero /word) but doesn't show the image.
Joseph
Hey Joseph! Instead of using:
this.childNodes[0].childNodes[0].firstChild;
try with:
this.childNodes[0].childNodes[0].firstChild.toString();
when you are attaching the movie