home *** CD-ROM | disk | FTP | other *** search
/ 404 Jogos / CLJG.iso / Diversos / rocketcar2.swf / scripts / DefineSprite_720 / frame_1 / DoAction.as
Encoding:
Text File  |  2008-09-24  |  193 b   |  12 lines

  1. this.onEnterFrame = function()
  2. {
  3.    if(_root.paused)
  4.    {
  5.       return undefined;
  6.    }
  7.    if(this.hitTest(_root.car._x,_root.car._y + 20,true))
  8.    {
  9.       _root.car._x -= 4;
  10.    }
  11. };
  12.