hey ive made a preloader and the loading bar loads but the percentages dont show at all, the bar itself is 150 pixels as described in the coding and the feild is in dynamic text and ive embeded the numbers and punctuations (selected them from character list) and i already named the variable. heres the coding im using:
LOADED = Math.round(getBytesLoaded());
TOTAL = Math.round(getBytesTotal());
PERCENT = LOADED/TOTAL;
BAR._width = PERCENT150;
_txt.TEXT = Math.round(PERCENT100)+"%";
if (LOADED == TOTAL) {
gotoAndPlay(3);
}
thanks guys