I used somebody else's code posted by LordNeckbeard here: FFmpeg move overlay from one pixel coordinate to another
I modified it a bit to this:
ffmpeg -i 4632.mpg -i 4632.bmp -filter_complex "[0]scale=320:240[over];
[1][over]overlay=enable='between=(t,0,50)':x=20+t*30:y=20+t*20" -s
1280:720 -c:a copy -y output.mpg
I'd like to be able to limit the movement so the overlay does not go off screen. How can I move a scaled clip overlay in four directions, X & Y starting from originating location and back?