home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / rocketcar2.swf / scripts / DefineSprite_197 / frame_90 / DoAction.as
Encoding:
Text File  |  2008-09-24  |  271 b   |  17 lines

  1. if(_parent.isloaded)
  2. {
  3.    _parent.gotoAndStop(10);
  4. }
  5. else
  6. {
  7.    thenextframe = Math.ceil(Math.random() * 8) + 1;
  8.    if(thenextframe == _parent._currentframe)
  9.    {
  10.       _parent.nextFrame();
  11.    }
  12.    else
  13.    {
  14.       _parent.gotoAndStop(thenextframe);
  15.    }
  16. }
  17.