home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Acao / kingofthehill.swf / scripts / DefineSprite_215 / frame_1 / DoAction.as
Encoding:
Text File  |  2005-07-25  |  284 b   |  16 lines

  1. pActive = true;
  2. this._alpha = 10;
  3. this._alpha = this.onEnterFrame = function()
  4. {
  5.    var _loc1_ = this;
  6.    if(pActive == true)
  7.    {
  8.       _loc1_._alpha += 10;
  9.       if(_loc1_._alpha >= 100)
  10.       {
  11.          _loc1_._alpha = 100;
  12.          pActive = false;
  13.       }
  14.    }
  15. };
  16.