home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 August / CHIP_08_2005.ISO / epic / ols-master.swf / scripts / DefineSprite_17 / frame_1 / DoAction.as
Encoding:
Text File  |  2004-11-19  |  172 b   |  11 lines

  1. randomize = function()
  2. {
  3.    trace("hello");
  4.    var target = Math.round(Math.random() * 40);
  5.    if(target < 4)
  6.    {
  7.       gotoAndPlay(target + 1);
  8.    }
  9. };
  10. stop();
  11.