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

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