i’m getting deseprate by now… i’ve been trying to get my audio preloader to work for 7h straight, and no positive results… it should be simple:
// actions on main timeline frame 1
stop();
my_sound = new Sound();
my_sound.loadSound(“song.mp3”, false);
// actions of a movie clip named mc_preloader that is also on the main timeline frame 1
onClipEvent(load){
bytestotal = _root.my_sound.getBytesTotal();
}
onClipEvent(enterFrame){
bytesloaded = _root.my_sound.getBytesLoaded();
_root.loaded.text = bytesloaded;
}
// there is also a dynamic text box on the first frame in the main timeline with an instance name of “loaded”
And it doesnt show the bytes loaded… i’m about to kill myself… why isn’t it working ?