Hi all, I have a jukebox type mc where the user can hit the tune button and it will loop thru the ‘sounds’ folder and play the next mp3 it finds in numerical order e.g. 0.mp3, 1.mp3 etc
It’s been working fine for ages but I notice that it wont work if I publish for anything other than flash 6???
I now have a cd based projector.exe project to make and would like to use the same code but Iam worried it wont pick up the files in the directory.
Do I have to specifiy a url instead of a folder name post 6??
countdowner = -1;
function noise(){
mymusic=new Sound();
mymusic.onload = function(success:Boolean) {
if (success) {
tune._alpha = 100;
mymusic.start(0,500);
shownum.text = countdowner;
}
};
mymusic.loadSound("/sounds/" + countdowner + “.mp3”, false);
}