作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用 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/
我是一名优秀的程序员,十分优秀!