Preloader/actionscript query

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(getPercent
100)+"%";
if (bytes_loaded == bytes_total) {
_root.gotoAndPlay(3);
}

Cheers, matt


bytes_loaded = Math.round(_root.getBytesLoaded());
bytes_total = Math.round(_root.getBytesTotal());
getPercent = bytes_loaded/bytes_total;
_root.loadBar._width = getPercent*200;
_root.loadText = Math.round(getPercent*100)+"%";
if (bytes_loaded == bytes_total) {
_root.gotoAndPlay(3);
}

Notice the change from 100 to 200 :wink:

Your a dude, cheers mate!

You’re welcome :slight_smile: