-
Hi! I have a script and I use MessageBox, how do I make the script wait for me to close the message box and then move on to the next operation, in tkinter message box it waits, but with this module it doesn't. Thanks! |
Beta Was this translation helpful? Give feedback.
Answered by
Akascape
Jul 28, 2023
Replies: 1 comment
-
@Rirynn It will wait if you use the msg = CTkMessagebox(app)
msg.get() # wait for the response
print("operation") # move to next operation after the response |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
Akascape
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@Rirynn It will wait if you use the
.get()
method.