Autoit -- Auto logins

07/28/2014 05:01 elvis1002#1
I've been attempting to make an autologin using Autoit, however i've been running into problems when it enters the password. (It enters the username just fine).

If anyone could tell me why my code doesn't work in the password area, that'd be awesome.

Snippet of code for the password sequence:
Code:
MouseClick("primary",550,720,2,1);password area
ControlSend("","","","password");password
The end result is: Client returns "Wrong password*1"
07/30/2014 16:44 riah64#2
You have to specify the Window title or handle and the control ID when using controlsend.

So try, edit accordingly.
Code:
ControlSend("Conquer Title","","[CLASS:MacromediaFlashPlayerActiveX; INSTANCE:1]","password")