Ok, I need some help from you guys. I’m Currently working on – http://www.fubb.us/v2/.
onClipEvent (enterFrame) {
this._x = 0;
this._y = 0;
loadBar._height = Stage.height;
loading = _parent.getBytesLoaded();
total = _parent.getBytesTotal();
percent -= (percent-((loading/total)*100))*.25;
per = int(percent);
loadBar._width = percent/100 * Stage.width;
if (percent>99.999) {
_parent.gotoAndPlay(3);
}
}
Can someone help me fix this code so that I put this preloader into my FLASH8 site.