I used the tutorial on volume control using a slider?
And I cant get the songs to work!!!
here’s my code and I followed everything more than once to get it right…
onClipEvent (load) {
mySound = new Sound();
mySound.loadSound(“12 Everybody’s Gotta Song.mp3”, false);
}
onClipEvent (enterFrame) {
downloaded = mySound.getBytesLoaded();
total = mySound.getBytesTotal();
if (downloaded != total) {
_root.dl = “loading please wait…”;
} else {
complete = 1;
_root.dl = “song.mp3”;
mySound.setVolume(_root.volume);
}
}
and here’s the tute: http://www.kirupa.com/developer/mx/volume_slider.htm
it would be nice if anyone could help :}
oh and this is what the error says: Error opening URL file:///C|/Documents%20and%20Settings/Family/My%20Documents/Flash/W.B%20inc/Getxstream.com/12 Everybody’s Gotta Song.mp3
thanks!