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
Tkinter-discuss@python.org
http://mail.python.org/mailman/listinfo/tkinter-discuss

Reply via email to