Are you trying to shut rainmeter down or hide it?
Startign and shutting down can be easy. taskkill APPNAME in a script can kill it and startign it is as easy as calling the EXE.
A two state script would handle that.
What ways are native to rainmeter for hiding/showing?
Code: vbscript
- Sub Object_OnStateChange(state)
- If state = "Command executed" Then
- MsgBox "You activated me!"
- End If
- End Sub