gpt4 book ai didi

python - 如何在 Pynput 中使用侧面鼠标按钮?

转载 作者:行者123 更新时间:2023-12-01 08:59:25 25 4
gpt4 key购买 nike

我正在使用 Python 模块 Pynput 来制作一个宏,该宏将按下我的侧面按钮之一。有谁知道 Pynput 中的侧面按钮叫什么?例如:

from pynput.mouse import Button, Controller

mouse = Controller()

mouse.press(Button.SIDEBUTTON)
mouse.release(Button.SIDEBUTTON)

SIDEBUTTON 部分会包含什么内容?

最佳答案

所以这个问题有点老了,我也遇到了同样的问题。我弄清楚了这些按钮是如何调用的:

Mouse4 和 Mouse5 的 Button.x1 和 Button.x2。

希望能帮到你。我用来找到它的脚本就在这里:

from pynput.mouse import Listener
def on_click(x, y, button, pressed):
if pressed:
print(button)

# Collect events until released
with Listener(on_click=on_click) as listener:
listener.join()

关于python - 如何在 Pynput 中使用侧面鼠标按钮?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52577712/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com