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 

script to write domain/user & password

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





PostPosted: Mon Sep 28, 2009 2:26 pm    Post subject: script to write domain/user & password Reply with quote

I have a Script to write automatically domain/user & password as ^3::SendInput, descarte{TAB}toto
^4::SendInput, pologne\descarte{TAB}toto

I would like to call this with a shorcut ctrl S for example but how i call it ?? how can i write it ?

Thks.

[Moved from Scripts & Functions forum. ~jaco0646]
Back to top
Guest






PostPosted: Mon Sep 28, 2009 2:37 pm    Post subject: Reply with quote

A little reading of the tutorial will go a long way...

It's funny because your code already implements the control plus another key. (i.e. ^3 = control+3)

Code:
^s::msgbox, RTFM ;<=== put stuff here
;^=control !=alt, +=shift #=winkey


--or--

Code:
^s::
{
SendInput, descarte{TAB}toto
SendInput, pologne\descarte{TAB}toto
}
return
Back to top
Guest






PostPosted: Mon Sep 28, 2009 2:42 pm    Post subject: Reply with quote

THNAKS BUDDY ...
Anonymous wrote:
A little reading of the tutorial will go a long way...

It's funny because your code already implements the control plus another key. (i.e. ^3 = control+3)

Code:
^s::msgbox, RTFM ;<=== put stuff here
;^=control !=alt, +=shift #=winkey


--or--

Code:
^s::
{
SendInput, descarte{TAB}toto
SendInput, pologne\descarte{TAB}toto
}
return
Back to top
Manas
Guest





PostPosted: Mon Sep 28, 2009 2:44 pm    Post subject: how to crypt the password ? Reply with quote

Anonymous wrote:
THNAKS BUDDY ...
Anonymous wrote:
A little reading of the tutorial will go a long way...

It's funny because your code already implements the control plus another key. (i.e. ^3 = control+3)

Code:
^s::msgbox, RTFM ;<=== put stuff here
;^=control !=alt, +=shift #=winkey


--or--

Code:
^s::
{
SendInput, descarte{TAB}toto
SendInput, pologne\descarte{TAB}toto
}
return



So now how can i crypt the password ? not to be in clear ??
Thansk Buddy .. more hard ... this question ..
Thanks .. DO yo have idea ?
Back to top
Guest






PostPosted: Mon Sep 28, 2009 2:52 pm    Post subject: Reply with quote

This link will help with your "encryption" using RC4 - http://www.autohotkey.com/forum/topic598.html&highlight=rc4

Good luck!
Back to top
godsstigma



Joined: 04 Nov 2008
Posts: 189
Location: Memphis, TN

PostPosted: Mon Sep 28, 2009 11:48 pm    Post subject: Reply with quote

Guest wrote:

Code:
^s::msgbox, RTFM ;<=== put stuff here
;^=control !=alt, +=shift #=winkey


Nice msgbox.
Back to top
View user's profile Send private message
Guest






PostPosted: Tue Sep 29, 2009 12:41 am    Post subject: Reply with quote

godsstigma,

I knew you of all people would find humor in this! Laughing
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