I don't really script, but I need a few commands:
Click on a coordinate, hold the click (highlight) to another point, ALT+Tab, and paste into notepad/word.
I noob like me would take a while to find it, any Pro's can help me?
I don't really script, but I need a few commands:
Click on a coordinate, hold the click (highlight) to another point, ALT+Tab, and paste into notepad/word.
I noob like me would take a while to find it, any Pro's can help me?
http://www.stats.srl-forums.com/sigs/3985.png
Where'd my SRL stats go? u.u
Clickmouse(X, Y, TRUE/FALSE);
Or
Mouse(X, Y, RANDX, RANDY, TRUE/FALSE);
Can't tell you the other two, sorry :/.
Of course, make sure to set your variables and make sure the window name is correct.
SCAR Code:begin
HoldMouse(startx, starty, true);
MoveMouse(endx, endy);
ReleaseMouse(endx, endy, true);
KeyDown(17); //ctrl
KeyDown(67); //c
Wait(100);
KeyUp(67);
KeyUp(17);//release both
FindWindow('Untitled - Notepad');
ActivateClient;
KeyDown(17); //ctrl
KeyDown(86); //v
KeyUp(86);
KeyUp(17); //release both
end.
Thank you agent, I would have never thought of it.
And is there a master spreadsheet with all of the commands?
http://www.stats.srl-forums.com/sigs/3985.png
Where'd my SRL stats go? u.u
Yes, in SCAR, press F1 and it will open a page in your browser with all the built-in SCAR functions as well as a table of key codes.
Sweet, thanks!
::edit: i got more::
okay, so this is the story: I need to get e-mail addresses from ALL sign stores on the yellowpages. BAsically the script is going to scan the site, look for the string of "E-Mail", and click it. When Outlook opens, It will highlight the text, and place them into Microsoft Word.
I am only having problems for finding that string, and make sure it doesn't click that same sting, and finds another. Once all E-Mails are found and no more are left to be copied on the page, it will flip to the next page.
Now what I was thinking was to look in certain coords and find the E-Mail (string, or if I can find text, go ahead).
Now, can anybody show me or tell me what functions I will need?
::Edit 2: TO make it easier, It will find the string, once found, the page scrolls down until the string shows again, then clicks. Once the page reaches the bottom, it stops looking and goes to next page.
http://www.stats.srl-forums.com/sigs/3985.png
Where'd my SRL stats go? u.u
There are currently 1 users browsing this thread. (0 members and 1 guests)