I am feeling like such a n00b today, I can’t get anything to work. Anyway, I have this preloader, it’s supposed to make the bars go accross, but it doesn’t for some reason, it changes the _x value, which i know because i traced it, but the bars don’t move…? Any ideas, here’s the code i used.
onClipEvent(enterFrame) {
this._x = -55+_root.getBytesLoaded()/_root.getBytesTotal()*269.3;
trace(this._x)
}
btw, the reason there isn’t an if/then statement in it is cuz I have a % preloader too, and it covers that.