All good; if you want to improve your coding skillz, take another look at my example.  I created a custom (modular) function that I can provide coordinates to.  It's more efficient than copying and pasting more-or-less the same code over and over.  Write once, run many. ;untested _MoveAndClickMouse(780,600) _MoveAndClickMouse(780,225) _MoveAndClickMouse(780,350) Func _MoveAndClickMouse($X, $Y) MouseMove($X,$Y) Sleep(100) MouseClick("Left