Python Pit summary Possible causes of keyboard failure after calling keyboard events

Source: Internet
Author: User

When practicing Python to encapsulate keyboard events, implement a KeyDown and KeyUp function:

@staticmethod
def keyDown (keyName):
#按下按键
Win32api.keybd_event (keyboardkeys.vk_code[keyname],0,0,0)

@staticmethod
def keyUp (keyName):
#释放按键
Win32api.keybd_event (Keyboardkeys.vk_code[keyname],0,win32con. keyeventf_keyup,0)

@staticmethod
def twokeys (Key1,key2): #对前面函数的调用
#模拟两个组合键
Keyboardkeys.keydown (Key1)
Keyboardkeys.keydown (Key2)
Keyboardkeys.keyup (Key2)
Keyboardkeys.keyup (Key1)

After executing the TWOKEYW (' Ctrl ', ' V '), the paste is OK, but after the implementation of the keyboard is not good, the function of the keys are confused, or is not responding.

Later found because the code in the KeyUp () function has a problem, resulting in the execution of KeyUp () did not execute the success, the result is to press the key down, but did not give him to play, so the keyboard is not good use

Python Pit summary Possible causes of keyboard failure after calling keyboard events

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.