Hi,
I'm making this
Music Player which is kinda like the one found at
AmazonSo basically I use html Link to send the playhead to specific frames that load XML Song url and track Name.
What I wanna do now (in the HTML) is have another function that let's flash know what CD to pick out of the XML.
So I need a function like this one to tell flash what CD to pick
CODE
function CDID() {
if (movieIsLoaded(thisMovie(movieName))) {
thisMovie(movieName).Play();
}
}
and also in the html the a ref where I send the CDID = name // The CD ID Name
CODE
<a href= "#" CDID= "ElvisCD "VALUE="Goto Frame 9" ONCLICK="go(9)" >go to the frame 9</a>
Then I would need an If Statement in flash to realize what flash to play.
Does anyone know how to write the CDID to choose what CD to pick in the XML.
Once it pick the right CD in XML the I can load the approriate songs.
Thanks,