home *** CD-ROM | disk | FTP | other *** search
/ 600 Games / 600games.iso / Aventura / freaky-fun.swf / scripts / DefineSprite_304 / frame_1 / DoAction.as
Encoding:
Text File  |  2006-06-07  |  221 b   |  16 lines

  1. n = 1;
  2. this.onEnterFrame = function()
  3. {
  4.    moving._x += n;
  5.    count++;
  6.    if(count == 150)
  7.    {
  8.       count = 0;
  9.       n = - n;
  10.    }
  11.    if(moving.hitTest(_root.hero))
  12.    {
  13.       _root.hero._x += n;
  14.    }
  15. };
  16.