| View previous topic :: View next topic |
| Author |
Message |
Tekl Guest
|
Posted: Thu Sep 02, 2004 3:33 pm Post subject: Send same key like the Hotkey does not work |
|
|
Hi,
the following hotkey does not work.
^n::
Send,^n
return
this will work:
^o::
Send,^n
return
or
^n::
Send,^o
return
Tekl |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10465
|
Posted: Thu Sep 02, 2004 6:15 pm Post subject: |
|
|
To allow a hotkey to send itself (Windows NT/2k/XP+), include a $ in its definition:
$^n::
Send,^n
return
This prevents the hotkey from triggering itself over and over in an infinite loop (such loops are cut short automatically by the program). |
|
| Back to top |
|
 |
Tekl Guest
|
Posted: Thu Sep 02, 2004 9:26 pm Post subject: |
|
|
Hi Chris,
thanks. I should read your docs. Btw. the docs are very good, never seen this for free software.
Tekl |
|
| Back to top |
|
 |
|