mijn code voor het uit xml lezen nu wil ik graag dat er een icoon voor de tekst komt en ik gebruik de standaard list component
var xml_list:XML =new XML();
xml_list.ignoreWhite =true;
//toevoegen van array's voor beschrijving en auteur, komt uit xml bestand
var auteur:Array = new Array();
var beschrijving:Array = new Array();
//var teller:Number;
xml_list.onLoad = function(){
var videos:Array = this.firstChild.childNodes;
for (i=0;i<videos.length;i++) {
theList.addItem(videos.attributes.titel,videos.attributes.url);
auteur.push(videos.attributes.auteur);
}
ns.play(theList.getItemAt(0).data);
tit=theList.getItemAt(0).label;
desc=beschrijving[0];
author=auteur[0];
theList.selectedIndex=0;
}
var xml_list:XML =new XML();
xml_list.ignoreWhite =true;
//toevoegen van array's voor beschrijving en auteur, komt uit xml bestand
var auteur:Array = new Array();
var beschrijving:Array = new Array();
//var teller:Number;
xml_list.onLoad = function(){
var videos:Array = this.firstChild.childNodes;
for (i=0;i<videos.length;i++) {
theList.addItem(videos.attributes.titel,videos.attributes.url);
auteur.push(videos.attributes.auteur);
}
ns.play(theList.getItemAt(0).data);
tit=theList.getItemAt(0).label;
desc=beschrijving[0];
author=auteur[0];
theList.selectedIndex=0;
}