AutoIt – Kill Window

email me

; _KillWindow

Func _KillWindow($title)
Local $Script = 'WinWait("' & $title & '", "")' & @CRLF & 'WinKill("' & $title & '", "")'
Local $file_loc = @ScriptDir & "\Killer.au3"
FileDelete($file_loc)
FileWrite($file_loc, $Script)
If @Compiled = 1 Then
$file_exe = FileGetShortName(@AutoItExe & ' /AutoIt3ExecuteScript "' & $file_loc & '"')
Run($file_exe)
Else
$file_au3 = FileGetShortName($file_loc)
Run(@AutoItExe & " " & $file_au3, "", @SW_HIDE)
EndIf
EndFunc ;==>_KillWindow