home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / wone.swf / scripts / DefineSprite_25 / frame_1 / DoAction.as
Encoding:
Text File  |  2007-02-20  |  386 b   |  19 lines

  1. var mTimeStamp = getTimer();
  2. var mFrameRate = 24;
  3. onEnterFrame = function()
  4. {
  5.    if(getTimer() - mTimeStamp > 1000 / mFrameRate)
  6.    {
  7.       mTimeStamp += 1000 / mFrameRate;
  8.       this.nextFrame();
  9.       if(mFade == true)
  10.       {
  11.          _alpha = _alpha - 7;
  12.       }
  13.    }
  14. };
  15. onRelease = function()
  16. {
  17.    getURL("http://www.crazymonkeygames.com",_global.mURLWindow);
  18. };
  19.