G'day,
在他的链接http://docs.activestate.com/activepython/2.7/pywin32/win32gui__FlashWindowEx_meth.html上,有win32gui.FlashWindowEx()的文档,我已经设法使用该文档
import win32gui as w
a = w.GetForegroundWindow() #just get the handler/ID for the current window
w.FlashWindowEx(a,0,5,1000) #many variations of the 5,1000 have been tried
但是Windows 7任务栏中发生的所有事情都是图标变成金色背景,而不是闪烁,所以我的问题是,有人知道文档提到的win32con.FLASHW_ *标志吗,也许是指向它们的更多信息的链接?
干杯
最佳答案
在Microsoft的支持部门"How to use FlashWindowEx to Notify a User from Visual Basic"上,可以找到有关FlashWindowEx
函数的Visual Basic版本的更多信息。
该页面包含FLASHW_*
标志的列表。