home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Corrida / actiondrivinggame.swf / scripts / DefineSprite_114 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-13  |  308 b   |  17 lines

  1. function randomTreeSequence()
  2. {
  3.    randomSequenceNumber = Math.floor(Math.random() * 3 + 1);
  4.    if(randomSequenceNumber == 1)
  5.    {
  6.       gotoAndPlay(1);
  7.    }
  8.    if(randomSequenceNumber == 2)
  9.    {
  10.       gotoAndPlay(28);
  11.    }
  12.    if(randomSequenceNumber == 3)
  13.    {
  14.       gotoAndPlay(55);
  15.    }
  16. }
  17.