| View previous topic :: View next topic |
| Author |
Message |
Manis Guest
|
Posted: Mon Sep 28, 2009 2:26 pm Post subject: script to write domain/user & password |
|
|
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
|
Posted: Mon Sep 28, 2009 2:37 pm Post subject: |
|
|
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
|
Posted: Mon Sep 28, 2009 2:42 pm Post subject: |
|
|
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
|
Posted: Mon Sep 28, 2009 2:44 pm Post subject: how to crypt the password ? |
|
|
| 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
|
|
| Back to top |
|
 |
godsstigma
Joined: 04 Nov 2008 Posts: 189 Location: Memphis, TN
|
Posted: Mon Sep 28, 2009 11:48 pm Post subject: |
|
|
| Guest wrote: |
| Code: | ^s::msgbox, RTFM ;<=== put stuff here
;^=control !=alt, +=shift #=winkey |
|
Nice msgbox. |
|
| Back to top |
|
 |
Guest
|
Posted: Tue Sep 29, 2009 12:41 am Post subject: |
|
|
godsstigma,
I knew you of all people would find humor in this!  |
|
| Back to top |
|
 |
|