Flash + XML Help

OK, I’m making just another mp3 player, but with more information about songs.

I store data in XML file with this elements:

 
 
<list>
<entry date="Some date 1">
<title>Title 1</title>
<description>just another text 1</description>
<image>Image1.jpg</image>
</entry>
 
<entry date="Some date 1">
<title>Title 2</title>
<description>just another text 2</description>
<image>Image2.jpg</image>
</entry>
...
 
</list>

I import data into Flash and make song list.
Each line in the list shows song No and song title.
Each line can be clicked.

What I want is to click on each line in the list and show all data of that song (date, title, description…) in one single text field called “allinOne”.
I have tried something like:
…onPress = function() {
allinOne.htmlText = songTitel* + songDate* + …
};

But it doesn’t work! Here is the code:

[AS]
_root.playlist == undefined ? playlist=“list.xml” : playlist=_root.playlist;
Stage.showMenu = false;
Stage.scaleMode = “noScale”;
stop();
data_xml = new XML();
data_xml.ignoreWhite = true;
data_xml.onLoad = loadData;
data_xml.load(playlist);
function loadData(success) {
if (success) {
songDate = new Array();
songTitel = new Array();
audioTracks = new Array();
audioTracks = this.firstChild.childNodes;
song_total = audioTracks.length;
for (var i = 0; i<song_total; i++) {
songDate.push(audioTracks*.attributes.date);
songTitel.push(audioTracks*.childNodes[0].firstChild.nodeValue);
holder.playlist.btn.duplicateMovieClip(“btn”+i, i);
holder.playlist[“btn”+i]._y = holder.playlist.btn._y+iint(holder.playlist.btn._height)+i;
holder.playlist[“btn”+i].txt = checkDigits(i+1)+". "+ songTitel
;
holder.playlist[“btn”+i].hit.onPress = function() {
allinOne.htmlText = (“ok”+songTitel*);// I need help for this line here!!!
};
}

}
delete audioTracks;
delete data_xml;
}
[/AS]