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

  1. Key.removeListener(myListener);
  2. onEnterFrame = function()
  3. {
  4.    _alpha = _alpha - 10;
  5.    if(_alpha < 0)
  6.    {
  7.       _alpha = 0;
  8.       play();
  9.       delete onEnterFrame;
  10.    }
  11. };
  12. trace("FADE OUT ARENA");
  13. stop();
  14.