Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ; by Isuelt
- ; AutoHotKey Script to close the popup message window for InSlimVML
- ; take it, change it, do better
- ; Compiled EXE version available here : https://u.pcloud.link/publink/show?code=XZJb8fXZWzL2vcapCyH83C65oMuoYk2G6gR7
- I_Icon = meat_popsicle_avatar_3h3_icon.ico
- IfExist, %I_Icon%
- ;---- Alter the tray icon menu:
- Menu, Tray, Add
- Menu, Tray, Icon, %I_Icon%
- Menu, Tray, NoStandard
- Menu, Tray, Color,4B4C4F,
- Menu, Tray, Tip, Close InSlimVML Message Window
- ;Menu, Tray, Add, Quit - Close InSlimVML Message Window, CloseApp
- Menu, Tray, Add, &Exit, k_MenuExit
- ;return
- ;@Ahk2Exe-SetCompanyName Isuelt
- ;@Ahk2Exe-SetVersion 1.0.0.1
- ;@Ahk2Exe-SetName InSlimVML_Closer
- ;@Ahk2Exe-SetProductName InSlimVML_Closer
- ;@Ahk2Exe-Cont /ScriptGuard2
- #Persistent
- SetTimer, ClosePopup, 500
- return
- #SingleInstance, Force
- Gui, -Caption -Border
- Gui, Show, w0 h0, Close InSlimVML Message Window
- return
- ClosePopup:
- SetTitleMatchMode, 2
- Sleep 1000
- WinClose, InSlimVML v0.
- return
- ; Exit the script (via Escape when active, the window's x button, or system tray Exit option).
- GuiEscape:
- GuiClose:
- k_MenuExit:
- ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement