hidden maxgui window?

BlitzMax Forums/BlitzMax Beginners Area/hidden maxgui window?

Can anyone give me some pointers in how to hide/unhide a Maxgui window?

Hidegadget(mywindow) and showgadget(mywindow)?

If you want the window to be created hidden until you explicitly call ShowGadget() then create it using the WINDOW_HIDDEN flag (see the MaxGUI CreateWindow docs).

Thanks, that did the trick.

(The MaxGUI docs could really use some improvement and samples...)