Display xml in dynamic textbox

Hi, Im relatively new to xml and flash and could use a little help.
I have an xml doc that contains the following structure:

<myCalendar>
<event id=“1” eventYear=“2007”>
<eventDate>July 1</eventDate>
<eventTitle>Junior East Championships</eventTitle>
<eventLocation>Dallas, Texas</eventLocation>
<eventDetails>Come one come all to our event.</eventDetails>
</event>
<event id=“2” eventYear=“2007”>
<eventDate>Aug 4</eventDate>
<eventTitle>Pan American Games</eventTitle>
<eventLocation>Rio de Janeiro, Brazil</eventLocation>
<eventDetails>This continental version of the Olympic Games takes place every four years, one year before the Olympics.</eventDetails>
</event>
</myCalendar>

What I would like to do is display each element (eventDate, eventName, etc…) in its own dynamic text field and repeat this for each event in the file, all on one page (that scrolls if necessary)

Is this possible? please help…

thank you