Hi, I have an xml file (externally saved) that is similar to the following:
[root]
[main]
[title]...[/title]
[content]...[/content]
[/main]
[main]
[title]...[/title]
[content]...[/content]
[/main]
[/root]
*All <> is replaced with [].
What I like to do is to get what's in [title] tag using HTTPservice, import it into Flex, and save it as array objects, and do the same thing for [content]. This way I can later refer the array object saying title[0] or content[2].
I'm really new to Flex so your complete example is really appreciated.
LuckySamurai