Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 

timerbox based on EasyGui 0.96

It has new argument time=seconds and it closes messagebox after that time.

You need only easygui_timerbox.py without original easygui

from easygui_timerbox import timerbox

timerbox('Time to the end of the World', 'Countdown', time=5)

In example.py (you can see the same if you run python easygui_timerbox.py)

timerbox('Time to the end of the World', 'Countdown', time=5)

#1

result = timerbox('Last change to save the World', 'Countdown', choices=['BUM!', 'Save the World'], time=5)

#1

timerbox('Time to BUM !!!', 'Countdown', choices=['OK'], time=5)

#1

timerbox('You saved the World !', 'Countdown', choices=['OK'], time=5)

#1