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

  1. ymax = 300;
  2. onenterframe = function()
  3. {
  4.    y = _parent._y;
  5.    if(y > ymax)
  6.    {
  7.       y = ymax;
  8.    }
  9.    c = math.floor(1 + y / ymax * _totalframes);
  10.    gotoAndStop(c);
  11. };
  12.