# XML Parsing?

**URL:** https://forum.kirupa.com/t/xml-parsing/251792
**Category:** flash
**Created:** [February 12, 2008, 7:11pm UTC](https://forum.kirupa.com/t/xml-parsing/251792 "2008-02-12T19:11:02Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![Zenor](https://yyz1.discourse-cdn.com/flex011/user_avatar/forum.kirupa.com/zenor/32/3634_2.png) [@Zenor](https://forum.kirupa.com/u/Zenor)
#### Post date: [February 12, 2008, 7:11pm UTC](https://forum.kirupa.com/t/xml-parsing/251792/1 "2008-02-12T19:11:02Z")

</div>

Hello everyone,

I’ve got a problem completing a project of mine.  
Firstly I am using the following XML:

```auto

<News>
    <newsContent>
        <title>My title here</title>
        <date>My date here</date>
        <content>My text here.</content>
        <image>My Image here.jpg</image>
    </newsContent>
</News>

```

I successfully load this xml into flash,but what I want to implement is when I click on a button for example “next” button,I want it to change the xml content(new image/title/date text).

I think I must create a second Node(\<newsContent\>) and change everything there,the image title text and date,but I don’t know **how to say flash to go to the next node when I click on a button.**  
Any suggestions?

Thanks in advance:thumb:
