I was wondering if anybody knew how to create a music player complete with a Play button, Stop button, Next button ,Previous button and a small area containing the song name, similar to the one located at www.ChristinaMilian.com .
thanks for the help.. still a bit of trouble though because i'm not an advanced user.. but i'm guessing i have to replace some things with my filenames i'm just not sure where they go. could you help out a bit more please?
hmmm... i did everything exactly the way you said it but it doesn't seem to be working when i test it. have you tried it to see if it works? and if so, could you please create it for me and send it to me so all i have to do is add my music into it?
now even though i replaced your 1.mp3 with my file it still came up as 1.mp3. but then when i hit the "next" button on the music player, it gives me this message:
"blah blah" representing the filename of my mp3. but the thing is, the mp3 that i specified isn't located on my desktop so i don't know why it's going there to locate it. can you help?
ok. it worked but when i test it i still get the error message saying it cannot find 1.mp3. do you know why it could be doing that? and if i wanted to put this on the web would i have to import the files to the library?
do you know what could be causing that? and dont worry about helping me with the "Error opening URL "file:///C|/Documents%20and%20Settings/Pierce%20Selman/Desktop/1.mp3"" problem because i fixed it. and by the way i appreciate all of your help, thanks ALOT!
10x about the site,
about the names, u should make an array to put all the names or u can change the names of your mp3 to be the names example:
"britny sprears - hoops i did it again.mp3"
and then take the name and show it.
about the import don't do that don't import nothing to the fla it's not the idea of the function.
about the back change it to this:
Code:
on (press) {
_root.now--;
if (now<0) {
_root.now = files.length-1;
}
soundPlaying.stop()
soundPlaying.loadSound(files[now]);
soundPlaying.play();
}