Python win32api.mouse_event TypeError
作者:互联网
import sys
import win32api, win32con
import pyHook
import pythoncom
def CursorLeft():
win32api.mouse_event(win32con.MOUSEEVENTF_MOVE, -1, 0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTDOWN, 0, 0)
win32api.mouse_event(win32con.MOUSEEVENTF_LEFTUP, 0, 0)
def Quit():
print "Quitting"
sys.exit()
# create a keyboard hook
def OnKeyboardEvent(event):
print 'MessageName:', event.MessageName
print 'Key:', event.Key
if event.Key in ['Numpad2']:
CursorLeft()
elif event.Key in ['End']:
Quit()
return True
def onm ouseEvent(event):
print 'Position:', event.Position
return True
hm = pyHook.HookManager()
hm.MouseAll = onm ouseEvent
hm.HookMouse()
hm.KeyDown = OnKeyboardEvent
hm.HookKeyboard()
pythoncom.PumpMessages()
CursorLeft函数每隔一段时间就可以正常工作.它也可以正常工作,没有任何负数作为参数.我完全迷失了为什么会这样!
第一次打电话,很好.
第二个电话,
TypeError: an integer is required
第三次电话,好的.
第四个电话,
TypeError: an integer is required.
等等.
解决了
win32api.mouse_event(win32con.MOUSEEVENTF_MOVE, -1, 0, 0, 0)
传递的最后两个参数允许函数正常运行.我仍然不确定为什么,仍然想知道,但至少它现在正在工作.
解决了
return True
事件函数返回true非常重要.
解决方法:
复制评论中的答案,以便从“未答复”过滤器中删除此问题:
return True
Very important that the event functions return true.
〜每Junkah回答一次
标签:python,winapi,pythoncom,pyhook 来源: https://codeday.me/bug/20190709/1414076.html