Hi all
With this script how can I add a textfield that shows the percentage and how can I make e MC that comes out with opactiy from 0% to 100% same as the percentage!
as code
this.onEnterFrame = function() {
var amount:Number = this.getBytesLoaded() / this.getBytesTotal() *100;
loader._xscale = amount;
if(amount == 100) {
this.gotoAndPlay(3);
delete this.onEnterFrame;
}
}
thnx in advanceee
gllanci