| View previous topic :: View next topic |
| Author |
Message |
upendrasingh
Joined: 20 Nov 2009 Posts: 4
|
Posted: Fri Nov 20, 2009 10:07 pm Post subject: Image Search - username and password |
|
|
Hi experts!
Could you pls help - I am new to this...
I am trying to create a hotkey that will enter the username and password for my office database. Since the system keeps logging out after every 5 mins of idle time, I want to create a hotkey to type the username and password every time I sign in.
This is the website for the database where I need to enter my username and password: http://gmsp.org/
I have tried using coordinates, and tabs, but since the coordinates vary across monitors.. I am thinking 'image search' might be the better way to go.
Any suggestions, or, scripts for image search and entering the username/password?
Thanks in advance for you time and assistance! |
|
| Back to top |
|
 |
rtcvb32
Joined: 17 Feb 2008 Posts: 125
|
Posted: Fri Nov 20, 2009 10:25 pm Post subject: |
|
|
Seems like the solution is more likely in a COM and Javascript writing rather than AHK.
|
|
| Back to top |
|
 |
Jasdeep
Joined: 09 Nov 2009 Posts: 178
|
Posted: Mon Nov 23, 2009 8:26 am Post subject: |
|
|
@ I have tried using coordinates, and tabs, but since the coordinates vary across monitors.. I am thinking 'image search' might be the better way to go.
use Coordmode,Mouse,Relative in order to get clicks accprding to your open active window |
|
| Back to top |
|
 |
Jasdeep
Joined: 09 Nov 2009 Posts: 178
|
Posted: Mon Nov 23, 2009 4:24 pm Post subject: |
|
|
the other thing you can do is depending upon your OS you can make a autologin via Registry and in the startup place the .ahk script which will automatically start once ur pc starts up after log on
and i think your .ahk script should include something like:-
Run www.gmsp.org
winwaitactive ::. The Gates................
Coordmode,Mouse,Relative
Mouseclick,left,xcoordinates,ycoordinates
send {Enter}
try out and if any further problem do post it with the code |
|
| Back to top |
|
 |
|