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 

Mouse Password

 
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions
View previous topic :: View next topic  
Author Message
xXJa50nXx



Joined: 19 Oct 2006
Posts: 32
Location: mo

PostPosted: Wed Jan 03, 2007 11:06 pm    Post subject: Mouse Password Reply with quote

This is just a small script i made for fun.
use a sequence of mouse clicks to type in your password.
left click is = to 1
Mouse wheel click is = to 2
Right click is = to 3

pass is where you put the mouse sequence and password it where you put the real password

Jason

Code:

pass=13213
passmake=
password=1234
~lbutton::
~^::passmake=
!Lbutton::
passmake=%passmake%1
gosub check
return

!Mbutton::
passmake=%passmake%2
gosub check
return

!Rbutton::
passmake=%passmake%3
gosub check
return

check:
if (pass=passmake)
{
loop ;this is so it will wait until you let go go alt
{
getkeystate,state,Alt
if state = d
{
}
else
{
sendinput %password%
passmake=
break
}
}
}
return
Back to top
View user's profile Send private message Send e-mail
twhyman



Joined: 07 Dec 2005
Posts: 218

PostPosted: Tue Jan 09, 2007 11:09 am    Post subject: Reply with quote

nice one but i missed the part where you need to press alt in order to get the keys to work Cool

thanks
twhyman
Back to top
View user's profile Send private message
Display posts from previous:   
Post new topic   Reply to topic    AutoHotkey Community Forum Index -> Scripts & Functions 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