I've noticed miniwindows only seem to refresh when there is new text sent from a mud. Is there anyway to force a refresh?
MiniWindow Refreshing
Posted by Katie Love on Sun 22 Mar 2009 03:49 AM — 3 posts, 15,789 views.
See: http://www.gammon.com.au/mushclient/mw_intro.htm
To cause that redraw to occur, call the Redraw function:
http://www.gammon.com.au/scripts/doc.php?function=Redraw
This is automatically called when new text arrives, as you noticed.
Miniwindows are drawn in an off-screen buffer (bitmap), and then automatically copied to the main output window, whenever the output window is redrawn. This provides fast, flicker-free operation.
To cause that redraw to occur, call the Redraw function:
http://www.gammon.com.au/scripts/doc.php?function=Redraw
This is automatically called when new text arrives, as you noticed.
I think MUSHclient also remembers to refresh if you change the visible flag of the miniwindow through WindowShow("whatever", true)... or false for that matter.