Modify

Opened 9 years ago

Closed 9 years ago

#3236 closed Bug (Rejected)

HotKey NumpadEnter

Reported by: djp_home@… 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

Change History (1)

comment:1 Changed 9 years ago by Melba23

  • Resolution set to Rejected
  • Status changed from new to closed

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

M23

Guidelines for posting comments:

  • You cannot re-open a ticket but you may still leave a comment if you have additional information to add.
  • In-depth discussions should take place on the forum.

For more information see the full version of the ticket guidelines here.

Add Comment

Author


E-mail address and user name can be saved in the Preferences.

 
Note: See TracTickets for help on using tickets.