if(IsTextInAreaEx(200, 50, 950, 90, x, y, '288524', 100, c, False, False, 0, 10, -1))then
begin
Writeln('yay');
begin
Writeln('nay');
end;
i need to find the number but it only finds words. how can i solve this problem?
grts, Tim
if(IsTextInAreaEx(200, 50, 950, 90, x, y, '288524', 100, c, False, False, 0, 10, -1))then
begin
Writeln('yay');
begin
Writeln('nay');
end;
i need to find the number but it only finds words. how can i solve this problem?
grts, Tim
Im not sure what you are asking, but I think you want to know how to find a number in an area?
A number doesn't have to be an integer, it can be a string too.
http://www.macrosoftinc.com/ ---WTF COPIERS!!!
the number is a part of an url in a browser. when i search the words in the url with "IsTextInAreaEx" then it works but when there are numbers in it. it does not find them. how can i solve it?
grts tim
I believe its the font setup... You say it finds letters but not numbers. The numbers could be different then the font your searching for.
(Scripts outdated until I update for new SRL changes)
AK Smelter & Crafter [SRL-Stats] - Fast Fighter [TUT] [SRL-Stats]
If you PM me with a stupid question or one listed in FAQ I will NOT respond. -Narcle
Summer = me busy, won't be around much.
Easy, use FindText or FindTextTPA with SRL![]()
program New;
var
c: Integer;
x, y: Integer;
begin
if(IsTextInAreaEx(200, 50, 950, 90, x, y, '288524', 100, c, False, False, 0, 10, -1))then
begin
ClickMouse(750, 420, True)
Wait(500);
KeyDown(051);
Wait(500);
KeyDown(065);
Wait(500);
KeyDown(082);
Wait(500);
ClickMouse(795, 415, True)
Writeln('yay');
ClickMouse(x, y, True);
end else
begin
Writeln('nay');
end;
end.
how do i search for the numbers then. srry ive never scripted before:s.
here is my code
There are currently 1 users browsing this thread. (0 members and 1 guests)