skijve Posted December 27, 2023 Posted December 27, 2023 Hello guys, Is it possible to send() a specific key on the keyboard whatever the keyboard layout is. To be clear I don't want to send "A" because I know that, following locale, autoit will send the corect character. I want to send a key for example in azertry : but for qwertz : Possible ? Thx in advance guys, Eva
Nine Posted December 27, 2023 Posted December 27, 2023 I tested on my french keyboard and I got the right character from scancode 53 (last key before right shift). M key should be 50 according to this list. #include <WinAPISys.au3> Local $iVKey = _WinAPI_MapVirtualKey(53, $MAPVK_VSC_TO_VK) _WinAPI_Keybd_Event($iVKey, 0) _WinAPI_Keybd_Event($iVKey, $KEYEVENTF_KEYUP) got the character é as it should be so I believe it should work for you... “They did not know it was impossible, so they did it” ― Mark Twain Reveal hidden contents Block all input without UAC Save/Retrieve Images to/from Text Monitor Management (VCP commands) Tool to search in text (au3) files Date Range Picker Virtual Desktop Manager Sudoku Game 2020 Overlapped Named Pipe IPC HotString 2.0 - Hot keys with string x64 Bitwise Operations Multi-keyboards HotKeySet Recursive Array Display Fast and simple WCD IPC Multiple Folders Selector Printer Manager GIF Animation (cached) Debug Messages Monitor UDF Screen Scraping Round Corner GUI UDF Multi-Threading Made Easy
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now