Ive read a few XML tutorials and I’m having trouble with this. Basically, I want my flash file to load the most recent news article. The 3 values of each article is title, date and info. I want to write all these up in an XML file, just to keep all the articles archived (in case someone wants to see “ALL NEWS”, which Ill then load through a simple html page).
For example.
<article0>
<title>Alien found on mars</title>
<date>June 12, 2020</date>
<info>Blah blah blah. see them at http://www.kirupa.com.</info>
<article0>
<article1>
<title>Rubber bands of death</title>
<date>June 19, 2020</date>
<info>Woosh!</info>
<article1>
And I’d have 3 dynamic textboxes to load the title, date and info. And it would take it from the most recent article, in this case article1.
Any help is appreciated, no clue where to start. Thanks.