//AE, Throw (move at a constant speed) expression script.
//

      veloc = -10;    //horizontal velocity (pixels per second)
      x = position[0] + (time - inPoint) *veloc;
      y = position[1];
      [x,y];

//