hi guys, I have a dynamic text box that i want to load multiple news entries into. the xml structure is:
ActionScript Code:
[FONT=Courier New][LEFT]<font face=[COLOR=#ff0000]"monospace"[/COLOR]>
</font><projects>
<project>
<projectName>main roads</projectName>
<clientName>rta</clientName>
<description><![COLOR=#000000][[/COLOR]CDATA[COLOR=#000000][[/COLOR]blahh[COLOR=#000000]][/COLOR][COLOR=#000000]][/COLOR]></description>
<date>September 26th [COLOR=#000080]2006[/COLOR] </date>
</project>
<project>
<projectName>Project2</projectName>
<clientName>bob</clientName>
<description><![COLOR=#000000][[/COLOR]CDATA[COLOR=#000000][[/COLOR]some [COLOR=#0000ff]text[/COLOR][COLOR=#000000]][/COLOR][COLOR=#000000]][/COLOR]></description>
<date>September 27th [COLOR=#000080]2006[/COLOR] </date>
</project>
</projects>
[/LEFT]
[/FONT]
what i want to do is load these entries in to ONE text field so they read like so:
main roads
rta
blahhh
September 26th 2006
Project2
bob
some text
September 27th 2006
etc etc
any help would be very welcome.