function movesize(){ bar._x = Stage.width / 2 - bar._width / 2; bar._y = Stage.height / 2 - bar._height / 2; bg._x = Stage.width / 2 - bg._width / 2; bg._y = Stage.height / 2 - bg._height / 2; main._x = Stage.width / 2 - main.bb._width / 2; main._y = Stage.height / 2 - main.bb._height / 2;} // End of the functionStage.scaleMode = "noScale";Stage.align = "TL";var msize = new Object();msize.onResize = function (){ movesize();};Stage.addListener(msize);movesize();loaded = _root.getBytesLoaded();total = _root.getBytesTotal();percent = Math.round(loaded / total * 100);bar.txt = percent;I