Hi,
I have this xml data loaded into flash:
<Test>
<ID>1</ID>
<Title> </Title>
<Questions>
<Question>how& <Question>
<Question> how& <Question>
</Questions>
<Answers>
<Answer>.</Answer>
</Answers>
</Test>
In flash how can I delete any one of the <Question> tags inside of the <Questions> tag? I need not only what is inside of the tag to be deleted but the <Question> tag itself along with the data is was holding. Basically the new xml data would look like this:
<Test>
<ID>1</ID>
<Title> </Title>
<Questions>
<Question>how& <Question>
</Questions>
<Answers>
<Answer>.</Answer>
</Answers>
</Test>
Thanks,
waffe