Hello,
I am currently using Actionscript with xml.
Now i want to create a dynamic textfield in actionscript for each part of info in the xml file.
I want to let the textfields created automaticly so i don't want to manual input the xml parts into the actionscript.
Here is the xml code:
-------------------------------------
I am a progammer.... no realy.
I am currently using Actionscript with xml.
Now i want to create a dynamic textfield in actionscript for each part of info in the xml file.
I want to let the textfields created automaticly so i don't want to manual input the xml parts into the actionscript.
Here is the xml code:
Code:
<?xml version="1.0"?>
<Informatie>
<Autos>
<Auto>Toyota</Auto>
<Shortd>Testje</Shortd>
<Longd>Testje</Longd>
<Prijs>4543</Prijs>
</Autos>
<Autos>
<Auto>asd</Auto>
<Shortd>asdf</Shortd>
<Longd>as</Longd>
<Prijs>3435</Prijs>
</Autos>
</Informatie>
-------------------------------------
I am a progammer.... no realy.