home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Acao / Titans / cyborg.swf / scripts / DefineSprite_14_cei / frame_1 / DoAction.as
Encoding:
Text File  |  2006-01-05  |  202 b   |  16 lines

  1. _alpha = 0;
  2. ys = -0.1;
  3. onenterframe = function()
  4. {
  5.    _Y = _Y + ys;
  6.    ys *= 1.2;
  7.    if(_alpha < 100)
  8.    {
  9.       _alpha = _alpha + 8;
  10.    }
  11.    else
  12.    {
  13.       delete onenterframe;
  14.    }
  15. };
  16.