Python win32con.WM_KEYUP Examples
The following are 7
code examples of win32con.WM_KEYUP().
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example.
You may also want to check out all available functions/classes of the module
win32con
, or try the search function
.
Example #1
Source File: inputs.py From NGU-scripts with GNU Lesser General Public License v3.0 | 10 votes |
def ctrl_click(x :int, y :int) -> None: """Clicks at pixel x, y while simulating the CTRL button to be down.""" x += Window.x y += Window.y lParam = win32api.MAKELONG(x, y) while (win32api.GetKeyState(wcon.VK_CONTROL) < 0 or win32api.GetKeyState(wcon.VK_SHIFT) < 0 or win32api.GetKeyState(wcon.VK_MENU) < 0): time.sleep(0.005) win32gui.PostMessage(Window.id, wcon.WM_KEYDOWN, wcon.VK_CONTROL, 0) win32gui.PostMessage(Window.id, wcon.WM_LBUTTONDOWN, wcon.MK_LBUTTON, lParam) win32gui.PostMessage(Window.id, wcon.WM_LBUTTONUP, wcon.MK_LBUTTON, lParam) win32gui.PostMessage(Window.id, wcon.WM_KEYUP, wcon.VK_CONTROL, 0) time.sleep(userset.MEDIUM_SLEEP)
Example #2
Source File: inputs.py From NGU-scripts with GNU Lesser General Public License v3.0 | 5 votes |
def send_arrow_press(left :bool) -> None: """Sends either a left or right arrow key press""" if left: key = wcon.VK_LEFT else : key = wcon.VK_RIGHT win32gui.PostMessage(Window.id, wcon.WM_KEYDOWN, key, 0) time.sleep(0.05) win32gui.PostMessage(Window.id, wcon.WM_KEYUP, key, 0) time.sleep(0.05)
Example #3
Source File: winpty.py From marsnake with GNU General Public License v3.0 | 5 votes |
def sendkeypress(self, key): hwnd = self.Console_hwnd[0] # win32gui.PostMessage(hwnd, win32con.WM_KEYDOWN, key, 0) win32gui.PostMessage(hwnd, win32con.WM_KEYUP, key, 0)
Example #4
Source File: winguiauto.py From PyAutoTrading with GNU General Public License v2.0 | 5 votes |
def pressKey(hwnd, key_code): ''' 模拟按键 :param hwnd: 窗体句柄 :param key_code: 按键码,在win32con下,比如win32con.VK_F1 :return: ''' win32gui.PostMessage(hwnd, win32con.WM_KEYDOWN, key_code, 0) # 消息键盘 time.sleep(.2) win32gui.PostMessage(hwnd, win32con.WM_KEYUP, key_code, 0) time.sleep(.2)
Example #5
Source File: winguiauto.py From pyautotrade_tdx with GNU General Public License v2.0 | 5 votes |
def sendKey(hwnd, key_code): ''' 模拟按键 :param hwnd: 窗体句柄 :param key_code: 按键码,在win32con下,比如win32con.VK_F1 :return: ''' win32gui.PostMessage(hwnd, win32con.WM_KEYDOWN, key_code, 0) # 消息键盘 time.sleep(.2) win32gui.PostMessage(hwnd, win32con.WM_KEYUP, key_code, 0)
Example #6
Source File: winguiauto.py From pyAutoTrading with GNU General Public License v2.0 | 5 votes |
def sendKeyMsg(hwnd, key_code): """ 模拟按键 :param hwnd: 窗体句柄 :param key_code: 按键码,在win32con下,比如win32con.VK_F1 :return: """ win32gui.PostMessage(hwnd, win32con.WM_KEYDOWN, key_code, 0) # 消息键盘 time.sleep(0.2) win32gui.PostMessage(hwnd, win32con.WM_KEYUP, key_code, 0) time.sleep(0.2)
Example #7
Source File: winguiauto.py From pyautotrade_tdx with GNU General Public License v2.0 | 4 votes |
def sendKey(hwnd, key_code): ''' 模拟按键 :param hwnd: 窗体句柄 :param key_code: 按键码,在win32con下,比如win32con.VK_F1 :return: ''' win32gui.PostMessage(hwnd, win32con.WM_KEYDOWN, key_code, 0) # 消息键盘 time.sleep(.2) win32gui.PostMessage(hwnd, win32con.WM_KEYUP, key_code, 0)