That plugin did not allow for hiding the windows if you closed it or disabled it. If you add the following lines to the end of the script (after OnPluginSaveState) then it will:
function OnPluginClose ()
-- if enabled
if GetPluginInfo (GetPluginID(), 17) then
OnPluginDisable()
end -- if enabled
end -- function OnPluginClose
function OnPluginEnable ()
WindowShow (context1.win, true)
WindowShow (context2.win, true)
end -- function OnPluginEnable
function OnPluginDisable ()
WindowShow (context1.win, false)
WindowShow (context2.win, false)
end -- function OnPluginDisable
Basically that hides the windows in the two context tables that have been set up.
See here for a simple alias that will close any miniwindows left lying around:
http://www.gammon.com.au/forum/?id=9694
Quote:
... and cannot click ...
You can't click on them because you removed the underlying code that handles the clicks.
I've amended the plugin to have that code:
http://www.gammon.com.au/forum/?id=14161&reply=4#reply4