i want a preloader for flash movie on web..whoch shows the percentage loaded in numbers..like 87%...i just need the actionscript code..not design
i will be pleased if someone can help me
i will be pleased if someone can help me
| Code: |
| bytes_loaded = Math.round(this.getBytesLoaded());
bytes_total = Math.round(this.getBytesTotal()); getPercent = bytes_loaded/bytes_total; this.loadText = Math.round(getPercent*100)+"%"; if (bytes_loaded == bytes_total) { this.gotoAndPlay(3); } |
| Code: |
| this.gotoAndPlay(1); |