闪烁任务栏上面的窗口标题.
WinFlash ( "窗口标题" [,"窗口文本" [,闪烁次数[,延迟]]])
| 窗口标题 | 窗口的标题. 参考 标题特殊定义. | 
| 窗口文本 | [可选参数] 窗口中的文本. | 
| 闪烁次数 | [可选参数] 标题闪烁的次数. 默认为4次. | 
| 延迟 | [可选参数] 每次闪烁的时间延迟(毫秒). 默认为 500 毫秒. | 
Example()
Func Example()
    ; Run Notepad
    Run("notepad.exe")
    ; Wait 10 seconds for the Notepad window to appear.
    Local $hWnd = WinWait("[CLASS:Notepad]", "", 10)
    ; Flash the window 4 times with a break in between each one of 1/2 second.
    WinFlash($hWnd, "", 4, 500)
EndFunc   ;==>Example