Hi,

Well to perform a task like this I would use a loop. Lets say the mouses current X pos is at 88 and you would like it to be at 245:

Do until CurrentPos = TargetPos
CurrentPos = CurrentPos + 1
SetCursorPos CurrentPos
loop

I hope you will see what I'm doing here and there for be able to perform your task.

Good Luck!

[Edited by rino_2 on 05-14-2000 at 04:45 AM]