home *** CD-ROM | disk | FTP | other *** search
- maskperc._yscale = 0;
- canplay = false;
- if(_root._url.toLowerCase().indexOf("arcadetown.com") > -1)
- {
- canplay = true;
- }
- canplay = true;
- this.onEnterFrame = function()
- {
- perc = _root.getBytesLoaded() / _root.getBytesTotal();
- maskperc._yscale = 100 * perc;
- if(_root.getBytesLoaded() == _root.getBytesTotal() && _root.getBytesTotal() > 0)
- {
- delete this.onEnterFrame;
- if(canplay)
- {
- gotoAndStop(33);
- }
- }
- };
- stop();
-