DelphiDell
Erfahrenes Mitglied
Hallo bin Flash .
Wiso funktioniert das nict.
Wenn ich auf den Button kliche passiert einfach nichts.
Wiso funktioniert das nict.
Wenn ich auf den Button kliche passiert einfach nichts.
Code:
onClipEvent(enterFrame)
{
var onplay = false();
var SongURL = new Array();
var artist = new Array();
var titel = new Array();
daten = new XML();
daten.load("playlist.xml");
daten.onLoad = function(geladen)
{
if(geladen)
{
total = this.firstChild.childNodes;
for(var i = 0;i < total.lenght;i++)
{
SongURL.push(total[i].attributes.url);
artist.push(total[i].attributes.artist);
titel.push(total[i].attributes.title);
}
}
}
music = new Sound(this);
music.onSoundComplete = function()
{
this.start(10,1);
}
}
on(click)
{
music.load(SongURL[0],true);
}