 |
AutoHotkey Community Let's help each other out
|
| View previous topic :: View next topic |
| Author |
Message |
jchristl Guest
|
Posted: Sat Jul 31, 2004 4:29 pm Post subject: Function Keys (hotkeys) enabled / disabled |
|
|
Hello, I'm using AutoHotkey to allow PuTTy Telnet have hotkeys. However I am noticing that when I map the F# keys something, that they interfere with the regular windows function keys. I attempted to get around it by doing something like this:
| Code: |
F3::
IfWinActive, PuTTy
{
winActivate, PuTTy
Send, {some commands}
return
}
else
Send, {F3}
return
|
However that just causes AutoHotKey to go into a loop of pressing {F3} if my PuTTy program isnt active. If I remove "Send, {F3}" then it causes the F3 function key to be disabled.
How can I get around this? (i know its probably something stupidly simple )
Thanks,
Joe |
|
| Back to top |
|
 |
Chris Site Admin
Joined: 02 Mar 2004 Posts: 10467
|
Posted: Sat Jul 31, 2004 5:55 pm Post subject: |
|
|
To have a hotkey that "sends itself", include a $ in front of the definition:
$F3::
Note that this is not supported on Windows 9x. |
|
| Back to top |
|
 |
jchristl Guest
|
Posted: Mon Aug 02, 2004 4:30 pm Post subject: |
|
|
Thanks, Chris
Joe |
|
| Back to top |
|
 |
|
|
You can post new topics in this forum You can reply to topics in this forum
|
Powered by phpBB © 2001, 2005 phpBB Group
|