home *** CD-ROM | disk | FTP | other *** search
- loadedbytes = _root.getBytesLoaded();
- totalbytes = _root.getBytesTotal();
- loadedkbytes = Math.round(loadedbytes / 1024);
- totalkbytes = Math.round(totalbytes / 1024);
- if(loadedbytes == totalbytes)
- {
- tellTarget("../")
- {
- play();
- }
- }
- tellTarget("_root.loaderbar")
- {
- gotoAndStop(int(_root.getBytesLoaded() * 100 / _root.getBytesTotal()));
- }
- tellTarget("_root.counter")
- {
- gotoAndStop(int(_root.getBytesLoaded() * 100 / _root.getBytesTotal()));
- }
-