Hello.
I am having preloader problems. I thought i coded this loader perfectly, but when i see the movie, nothing happens.
the code i have for the loader is below:
onClipEvent (enterFrame) {
loading = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
percent -= (percent-((loading/total)*100))*.25;
per = int(percent);
percentage = per+"%";
loadBar._width = per;
if (percent>99) {
_parent.gotoAndStop(2);
}
}
attached is my file.
thank you