home *** CD-ROM | disk | FTP | other *** search
- var flashVersion = int(System.capabilities.version.split(" ").pop().split(",").shift());
- if(flashVersion < _root.requiredFlashVersion)
- {
- this.msg = "Please upgrade to Flash Player " + _root.requiredFlashVersion;
- this.percentageDisplay = "";
- this.onEnterFrame = function()
- {
- this.gotoAndStop(1);
- };
- }
- else
- {
- this.msg = "Loading Alex Traxx\nDesigned by www.neodelight.com";
- this.onEnterFrame = function()
- {
- var _loc3_ = _root.getBytesLoaded() / _root.getBytesTotal() * 100;
- this.percentageDisplay = "loading.." + Math.min(100,Math.floor(_loc3_)) + "%";
- this.bar._xscale = Math.max(1,Math.min(100,Math.floor(_loc3_)));
- if(_loc3_ == 100 && _root._currentframe == 3)
- {
- this.onEnterFrame = undefined;
- _root.gotoAndStop("init");
- }
- };
- }
-