こんにちは、
彼のリンク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_* フラグ、おそらくそれらに関する詳細情報へのリンクについて知っている人はいますか?
乾杯