home *** CD-ROM | disk | FTP | other *** search
- function doLoading()
- {
- var nTotalSize = _root.getBytesTotal();
- var nLoadedSize = _root.getBytesLoaded();
- if(nLoadedSize >= nTotalSize)
- {
- _root.play();
- this.stop();
- }
- else
- {
- _root.stop();
- var nPercent = Math.round(nLoadedSize * 100 / nTotalSize);
- Progress.setPercent(nPercent);
- this.gotoAndPlay(_currentframe - 1);
- }
- }
- _root.stop();
- var g_nTest = 0;
- getUrl("FSCommand:fullscreen", "false");
- getUrl("FSCommand:allowscale", "false");
-