AutoHotkey Homepage AutoHotkey Community
Let's help each other out
 
 FAQFAQ   SearchSearch   MemberlistMemberlist   RegisterRegister 
 ProfileProfile   Log in to check your private messagesLog in to check your private messages   Log inLog in 

Fill out register info at website

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help
View previous topic :: View next topic  
Author Message
shemer77



Joined: 11 Aug 2008
Posts: 1

PostPosted: Mon Aug 11, 2008 9:30 pm    Post subject: Fill out register info at website Reply with quote

So I am trying to make a script that can fill out the register info at
http://www.sugarloot.com/register then go to a photo click 10 and thats it
I need to use a random generator name, the email needs to be used from output.txt and the user would have to select the password and then the program would click male and click I agree to terms this is what i have so far
Code:
space::Run http://www.sugarloot.com/
Click 1063, 256

IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Windows Internet Explorer
{
    WinActivate
}


What do i do now? I dont know how to tell the program to fill out the name section and the emails and stuff much help would be appreciated.

[Title edited. Please write descriptive titles for your topics. ~jaco0646]
_________________
ameer kambod
Back to top
View user's profile Send private message
Guest






PostPosted: Mon Aug 11, 2008 11:15 pm    Post subject: Reply with quote

macro it

1) click the field for name
2) send random name
3) send {TAB}
4) read email from output.txt
5) send email
6) send password etc
Back to top
Superfraggle



Joined: 02 Nov 2004
Posts: 970
Location: London, UK

PostPosted: Tue Aug 12, 2008 12:21 am    Post subject: Reply with quote

So you want to cheat at a competition. Well they will generally check IP addresses and see that all the votes came from the same place, and then remove all votes Very Happy
_________________
Steve F AKA Superfraggle

http://r.yuwie.com/superfraggle
Back to top
View user's profile Send private message MSN Messenger
shenmer
Guest





PostPosted: Tue Aug 12, 2008 5:00 pm    Post subject: Reply with quote

The Click command wont work
It will run sugarloot.com but after that it wont do anything why?
Back to top
Guest






PostPosted: Tue Aug 12, 2008 5:25 pm    Post subject: Reply with quote

Superfraggle wrote:
So you want to cheat at a competition. Well they will generally check IP addresses and see that all the votes came from the same place, and then remove all votes Very Happy


hehe owned Laughing roflmao maybe it works after confirming a ip change through a proxy list
Back to top
Serenity



Joined: 07 Nov 2004
Posts: 1276

PostPosted: Tue Aug 12, 2008 5:30 pm    Post subject: Reply with quote

shenmer wrote:
The Click command wont work
It will run sugarloot.com but after that it wont do anything why?


The click command probably executed before the window launched. Try adding WinWait before it.
_________________
"Anything worth doing is worth doing slowly." - Mae West
Back to top
View user's profile Send private message Visit poster's website
shemer7
Guest





PostPosted: Tue Aug 12, 2008 5:58 pm    Post subject: Reply with quote

So this is my new script
Code:
space::Run C:\Program Files\Mozilla Firefox\firefox.exe

IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
    WinActivate
}
1::MouseMove 760, 69
2::MouseClick
3::Send http://www.sugarloot.com
4::Send {Enter}


IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
    WinActivate
}

5::MouseMove 1077, 255
6::MouseClick
7::MouseMove 468, 364
8::MouseClick
WinWaitActive,,5
Send Randomname
Send {Tab}


For some reason after 8 nothing happens why?
Back to top
Serenity



Joined: 07 Nov 2004
Posts: 1276

PostPosted: Tue Aug 12, 2008 6:01 pm    Post subject: Reply with quote

You need to specify a window title in the WinWait options.
_________________
"Anything worth doing is worth doing slowly." - Mae West
Back to top
View user's profile Send private message Visit poster's website
shemrmer
Guest





PostPosted: Tue Aug 12, 2008 6:09 pm    Post subject: Reply with quote

Here is my code
Code:
space::Run C:\Program Files\Mozilla Firefox\firefox.exe

IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
    WinActivate
}
1::MouseMove 760, 69
2::MouseClick
3::Send http://www.sugarloot.com
4::Send {Enter}


IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
    WinActivate
}

5::MouseMove 1077, 255
6::MouseClick
7::MouseMove 468, 364
8::MouseClick
WinWaitActive,Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox,5
Send Randomname
Send {Tab}

still wont work it wont send randon name!
Back to top
Guest






PostPosted: Tue Aug 12, 2008 6:17 pm    Post subject: Reply with quote

figured it out sorta
Back to top
engunneer



Joined: 30 Aug 2005
Posts: 6847
Location: Pacific Northwest, US

PostPosted: Tue Aug 12, 2008 6:17 pm    Post subject: Reply with quote

Code:

8::
MouseClick
WinWaitActive ....

_________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM
Back to top
View user's profile Send private message Visit poster's website
Guest






PostPosted: Tue Aug 12, 2008 6:22 pm    Post subject: Reply with quote

I finally figured out but I need to figure out how to use a randon name generator
Code:
space::
Run C:\Program Files\Mozilla Firefox\firefox.exe

IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
    WinActivate
}
Sleep 2000
MouseMove 760, 69
Sleep 2000
MouseClick
Sleep 2000
Send http://www.sugarloot.com
Sleep 2000
Send {Enter}
Sleep 2000

IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
    WinActivate
}

MouseMove 1077, 255
Sleep 2000
MouseClick
Sleep 2000
MouseMove 468, 364
Sleep 2000
MouseClick
Sleep 2000
IfWinExist Contests by SugarLoot: Photo contests, Video contests, and Other Fun Contests! - Mozilla Firefox
{
    WinActivate
}

Send Randomname
Sleep 4000
Send {Tab}


I found this random code generator at here http://www.autohotkey.com/forum/topic34555.html
Back to top
engunneer



Joined: 30 Aug 2005
Posts: 6847
Location: Pacific Northwest, US

PostPosted: Tue Aug 12, 2008 6:25 pm    Post subject: Reply with quote

Anonymous wrote:
I need to figure out how to use a randon name generator

Yeah, sounds like you do.
_________________
Unless otherwise noted, all code is untested.
Common Answers: 1.(Loops, Viruses, etc.) 2. Search 3.RTFM
Back to top
View user's profile Send private message Visit poster's website
Guest






PostPosted: Tue Aug 12, 2008 6:36 pm    Post subject: Reply with quote

well if found that random name generator but how do i implement it into mine?
Back to top
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Ask for Help All times are GMT
Page 1 of 1

 
Jump to:  
You can post new topics in this forum
You can reply to topics in this forum


Powered by phpBB © 2001, 2005 phpBB Group