How can i change this so my preloader bar is twice as wide? Is there a way? When i manually widen it on the canvas, it appears as it was before when previewed. Any help?
bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent100;
_root.loadText = Math.round(getPercent100)+"%";
if (bytes_loaded == bytes_total) {
_root.gotoAndPlay(3);
}
Cheers, matt