home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / fwg_knight.swf / scripts / DefineSprite_29 / frame_114 / DoAction.as
Encoding:
Text File  |  2008-08-28  |  175 b   |  14 lines

  1. stop();
  2. onEnterFrame = function()
  3. {
  4.    if(_alpha <= 0)
  5.    {
  6.       _parent.play();
  7.       delete onEnterFrame;
  8.    }
  9.    else
  10.    {
  11.       _alpha = _alpha - 5;
  12.    }
  13. };
  14.