#3236 closed Bug (Rejected)
HotKey NumpadEnter
| Reported by: | Owned by: | ||
|---|---|---|---|
| Milestone: | Component: | AutoIt | |
| Version: | 3.3.14.2 | Severity: | None |
| Keywords: | HotKey NumpadEnter | Cc: |
Description
It's not possible to bind NumpadEnter key as a HotKey! I don't want to use {Enter} insted because I want to differenciate between Enter and NumpadEnter, if I want to have Enter and NumpadEnter the same, I could define a HotKey for NumpadEnter to send an Enter key... or bind to the same function...
Do you have an workaround for me?
; Example-Code
#include <MsgBoxConstants.au3>
HotKeySet("{NumpadEnter}", "KeyNumpadEnter")
HotKeySet("{ESC}", "Terminate")
Func KeyNumpadEnter()
MsgBox($MB_SYSTEMMODAL, "KeyInput", "You pressed NumpadEnter", 10)
EndFunc
Func Terminate()
Exit
EndFunc
while True
Sleep(1000)
WEnd
Attachments (0)
Change History (1)
comment:1 by , on May 20, 2016 at 6:33:27 PM
| Resolution: | → Rejected |
|---|---|
| Status: | new → closed |

Please post in the forum for support - Trac is reserved for reporting bugs.
M23