
17.06.2003, 13:30
|
|
|
Bumble Bee
Регистрация: May 2003
Адрес: Третья планета от Солнца
Сообщений: 1,254
|
вставь в первый кадр....
this.stop();
this.createTextField("percent", 1, Stage.width/2-25, Stage.height/2-10, 50, 20);
this.percent.border = 1;
this.percent.selectable = 0;
this.percent.autoSize = "center";
myformat = new TextFormat();
myformat.align = "center";
myformat.bold = 1;
this.onEnterFrame = function() {
loaded = Math.floor((this.getBytesLoaded()/this.getBytesTotal())*100);
this.percent.text = "ЗАГРУЖЕНО "+loaded+" %";
this.percent.setTextFormat(myformat);
};
function checkLoaded() {
if (this.loaded == 100 || this.getBytesLoaded()>=this.getBytesTotal()) {
this.play();
delete loaded;
clearInterval(interval);
this.percent.removeTextField();
}
}
interval = setInterval(function(){checkLoaded()},1);
|