
Hiding main TK main window
: It is possible to remove the main Tk window (created with
: Tk_CreateMainWindow()) from the display w/o altering or
: terminating the application? I'm using Tcl 7.3/Tk 3.6
How about "wm withdraw ."? To re-display the window, use "wm deiconify .".
mike