SCAR Code:program hmmzzz;
Function DoThis : TPointArray;
var i : Integer;
this : TPointArray;
begin
SetLength(this, 100);
for i := 0 to 100 do
begin
this[i] := inttopoint(i mod 2, i mod 5);
end;
result := this;
end;
var this : TPointArray;
i : Integer;
begin
this := DoThis;
for i := 0 to high(this) do
MoveMouse(this[i].x, this[i].y);
end.
I dun get itit doesnt work.





it doesnt work.
Reply With Quote







