hey I was wondering if anyone could help me with a quick questions.
weburl = weburl == dataArray[trackCount].weburl ? dataArray[trackCount].weburl : dataArray[trackCount].weburl;
loadAndPlay(trackCount);
I need weburl to be a link in flash for each artist… there are 30 different links that will be loading into this dynamic text box.
this is my attribute I used on a different thing.
SetSong = function(node){
snd.node = node;
snd.loadSound(node.attributes.src);
title_txt.text = node.attributes.title;
artist_txt.text = node.attributes.artist;
label_txt.text = node.attributes.label;
web_url = node.attributes.weburl;
web_txt.html = true;
web_txt.htmlText = “<a href=”"+web_url+"">"+web_url+"</a>";
but really I only need the web_url…
would I just change SetSong to something else?