I don't know why I can't figure this one out, but I just need a simple script that auto-clicks for me where I move my mouse. Here is what I have so far...
program New;
procedure Autoclick;
begin
if(isfkeydown(9)) then
begin
repeat
clickmouse(true)
wait(1000)
until(isfkeydown(10)
end.
Of course the clickmouse doesn't work without chords though, but I just want it to work without them. When I press F9, I want to be able to move my mouse by myself, freely, as it clicks once per second. F10 will stop the clicking. Thanks in advance!




Reply With Quote






