my function for clicking tabs works(well, now it does:p thanks RM!). But yes, yours is simpler, I might integrate that:p
Type: Posts; User: Terror Factor
my function for clicking tabs works(well, now it does:p thanks RM!). But yes, yours is simpler, I might integrate that:p
OMFG:duh:
How stupid am I -_-
Thanks, I'll run it and see if it works!
tab(just clicks on a tab in chrome specified by the x coordinate):
procedure tab(x: Integer);
begin
wait(100);
ClickMouse(x, 20, true);
wait(100);
end;
home(just does alt+home)
I use the home button(well, the shortcut: alt+home) to refresh. I could try the ctrl+tab to go through the tabs, I'll give it a go. But anyway: I want to know what causes those 2 errors, it is so...
I don't search for tabs, I enter the coords for the first tab manually.
(the coords work, this is the "refresh" procedure, that works flawless:
procedure reloadTabs;
begin
for e:=0 to...
Hi,
I'm having issues with a for loop, here's the code:
procedure submittvs;
begin
for e:= 0 to 4 do //tab1 tà 5
begin
tab(middenTab+i*tabLengte);
tvs;
Hehe, just found it too, but thanks! ^^
Small problem: how can I convert an int to a string, since the ReadIni only works with strings, and I can't use:
program Hallo;
var i:Integer;
begin
i:=2;
WriteINI('Writing section', i,...
Thanks both, I'll start reading now!
EDIT: the ini method will do the trick I think, and it's easy too.
@Frement: your method looks nice too, but is quite a bit more complicated :p What are the...
Hi,
I'm currently having a problem with a script I wrote. It fills in a form and submits it to a website, but the info it submits, is in 4 seperate arrays. All 4 arrays have about 5000 entries....
You mean this thread: http://www.villavu.com/forum/showthread.php?t=45534&highlight=appa ?
Looks EXACTLY like what I need :o Will check that out, thanks!
Is there something like SMART for non runescape scripts?
I use a very simple, homemade script to autosubmit info. The problem is that it is quite slow, so I would like to run multiple instances of...
Lol, here's the 'bot' for it:
program New;
begin
repeat
ClickMouse(693, 508, True); //plowtool
wait(1500);
ClickMouse(390, 315, True);//field
wait(1500);
ClickMouse(646, 506, True);...
When I want to collect from animals, it clicks on one, and then it misclicks and it moves my farm out of view.
I'm using scar divi 3.21b, on windows 7, crosshair on farmville in firefox, farmville...
Thanks for the script, but I've found quite a fast way to add the data in scar.
I add the data in excel(everything in a separate column, so you can autofill numbers etc), select the necessary stuff...
Yes, that's what I'm trying to say :p
It would be better if it was in VB or something, so I could keep using my computer and could just use a database with the values.
I think I'm gonna try with...
Hi all,
I want to make a batch form filler. I have to submit a lot of stuff to a website, and I realized scar might be the tool I need.
Concrete:
There are 3 field that have to be filled in, and...