ust create the root window yourself to have control over it and withdraw it:
from Tkinter import *
import tkMessageBox
r = Tk()
r.withdraw()
tkMessageBox.showwarning(
"Output check",
"Output is not on")
a= raw_input('hit key to continue')
Regards,
David
Excellent. This is exactly what I wanted.
Thanks.
_______________________________________________ Tkinter-discuss mailing list [email protected] http://mail.python.org/mailman/listinfo/tkinter-discuss
