I want to be able to open a new window and go to runescape (which I can do) but then I need to be able to somehow make that the client or something so that I can find a color in it. All I really want is to be able to open runescape and then click on a color I find. This is what I have come up with so far. It compiles and everything it just doesnt do what I want. Thanx for the help
.
SCAR Code:
program OpenRunescape;
{.include SRL/SRL.scar}
const
Color = 8107734;
var
x, y : Integer;
begin
SetupSRL;
OpenWebPage('http://www.runescape.com');
Wait(10000);
FindColor(x, y, Color, MSx1, MSy1, MSx2, MSy2)
Mouse(x, y, 0, 0, true);
end.