Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我在 Python 脚本中使用 win32api 来控制鼠标移动。它工作得很好,但是只要我在 Python shell/IDE 之外单击(我也生成单击事件),我的所有鼠标事件都会立即停止。如果我再次单击我的 shell/IDE,将恢复控制。
似乎只有当我的 Python shell 或 IDE 是“活动”窗口时鼠标控制才有效——即使在 Python 被发送到后台之后,有没有办法保留鼠标控制?
原来这不是 Python 问题,而是我用来生成鼠标移动的设备的问题。需要单独的 API 调用以允许此设备在其所有者失焦时推送事件。