Music Samples Online

I have a friend (yes, yes, I do) who wants to add a mp3 player to his site (no problem) that includes a playlist etc…

My problem with helping him is for the life of me I can not find a single player that incorporates an album (sorry, CD) cover along side the track playing and a description…

So, if anyone knows how to implement the onclick of playlist make cd cover visible and scroll description, well, I’d appreciate us going over the coding…

Thanks.

By the way, Fluid Flash media has exactly what I’m looking for but now way to get it without ripping it, and I’m not that desperate juust yet…

:alien:
That sounds pretty simple to me. I mean, think about it. What if you had an MC that had all the album covers’ MCs in it (one frame per), right, and you changed frame depending on the track number? Each frame would have a movie clip in it that would do that animation and stop. Now, if you want to be REALLY flexible, you could attach a .jpg to the mc, instead of the aforementioned method, by way of the track number…


//this goes with the on press/release stuff

//so it's track number 14...
_root.tracknum=14;
//I'm assuming you have all the playlist 
//stuff in a container called playlist and 
//have the picture mc inside it called pict
_root.playlist.pict.gotoAndStop(_root.tracknum);

or…


//this goes with the on press/release stuff

//so it's track number 14...
_root.tracknum=14;
buffer=_root.tracknum+".jpg";
_root.playlist.pict.loadMovie(buffer);

I think that should work…That’s just off the top of my head, so… Anyway, that’s an idea for you to play with.

Later,
–Elios

Go try and see if I can get this puppy going… Appreciate the response… I’m on a time table with a couple projects…