On 12/28/2015 4:43 PM, Malik Brahimi wrote:
I have an event driven script
What does that mean, more specifically?
that prompts users as the events are
triggered with a message box. Is there anyway with any GUI toolkit to
create these dialogs simultaneously in the event that they coincide?
In article
<61cbd1cb-bd6d-49aa-818f-d28c46098...@x18g2000pro.googlegroups.com>,
Jah_Alarm wrote:
> I need to display a message box at the click of a button. I od the
> following:
>
> from Tkinter import *
>
> def msg1():
> messagebox.showinfo(message='Have a good day')
>
>
> Button(main
On Tue, 17 Aug 2010 04:02:23 -0700 (PDT)
Jah_Alarm wrote:
>
> When I try importing messagebox from Tkinter i get an error message
> that this module doesn't exist.
>
I believe what you want is Tkinter.Message
--
Matt Saxton
--
http://mail.python.org/mailman/listinfo/python-list
Sean DiZazzo wrote:
On Sep 11, 8:27 am, ed wrote:
No matter what I do, the MessageBox always appears on the 2nd monitor.
I've forced all the other widgets to monitor 1.
I thought that creating a class and forcing the position would help, but
it hasn't.
I'm using Ubuntu Jaunty, python 2.6.
Any
On Sep 11, 8:27 am, ed wrote:
> No matter what I do, the MessageBox always appears on the 2nd monitor.
> I've forced all the other widgets to monitor 1.
> I thought that creating a class and forcing the position would help, but
> it hasn't.
>
> I'm using Ubuntu Jaunty, python 2.6.
>
> Any ideas wh
[EMAIL PROTECTED] a écrit :
> HI
>
> I am creating a tkinter app.
>
> example
>
> tkMessageBox.showinfo("Window Text", "A short message")
> print "blah"
>
> The execution of the application halts when the message box is
> displayed until the user clicks OK, then "blah is printed.
Yeps, this is