我想把这个结果作为某种“自动触发器”(对不起我是新手),而不是每隔X秒左右监视一次
到目前为止,我只能像下面的代码那样得到它,但是,除了“滞后”之外,我还需要一直检查它,这听起来不是很有效
我看到了几个类似的答案,但仅限于c。
谢谢! 佩德罗
from win32gui import GetWindowText, GetForegroundWindow
import time
last_window = GetWindowText(GetForegroundWindow())
while True:
if a != GetWindowText(GetForegroundWindow()):
"""do whatever i want"""
a = GetWindowText(GetForegroundWindow())
time.sleep(1)