Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
U3Helper/U3H_appStop.ahk
mbirth 28a048690c * modularized U3Helper.ahk
+ added take-over of icon of %AppExe% ... if we add a TrayIcon someday
+ added OnClose-handling when using appstart (kills process of main application)
2007-03-21 09:56:23 +00:00

22 lines
338 B
AutoHotkey

Counter = 0
ToolTip Closing %AppName% ...
SplitPath AppExe, AppFile, null, null, null, null
TryClose:
Process Exist, %AppFile%
If ErrorLevel
ProgPID = %ErrorLevel%
Else
Goto CloseDone
WinClose ahk_pid %ProgPID%, , 0.5
If Counter >= 10
Process Close, %ProgPID%
Counter += 1
Goto TryClose
CloseDone:
ToolTip