home *** CD-ROM | disk | FTP | other *** search
- function flash_loading(x, T, r)
- {
- var _loc1_ = T / 2;
- var _loc2_ = (- r) / (_loc1_ * _loc1_);
- return _loc2_ * Math.pow(x % T - _loc1_,2) + r;
- }
- _root.stop();
- var my_cm = new ContextMenu();
- my_cm.hideBuiltInItems();
- _root.menu = my_cm;
- _X = Stage.width / 2;
- _Y = Stage.height / 2 - 30;
- mLogo._alpha = 0;
- mLoading._alpha = 0;
- var nDownload;
- var sDownload = "";
- onEnterFrame = function()
- {
- nDownload = int(_root.getBytesLoaded() / _root.getBytesTotal() * 100);
- if(nDownload == 100)
- {
- if(_root._mochiad instanceof MovieClip != true)
- {
- _root.play();
- }
- }
- if(mLogo._alpha < 100)
- {
- mLogo._alpha += 5;
- }
- else
- {
- mLogo._alpha = 100;
- sDownload = nDownload + " %";
- mLoading._alpha = flash_loading(getTimer(),800,100);
- }
- };
-