Tkinter's event_generate command ignored
event_generate
will by default process all event callbacks immediately. However, if you don't call update before calling event_generate
, the window won't be visible and tkinter will likely ignore any events. You can control when the generated event is processed with the when
attribute. By default the value is "now", but another choice is "tail" which means to append it to the event queue after any events (such as redraws) have been processed.
Full documentation on the when
attribute is on the tcl/tk man page for event_generate
: http://tcl.tk/man/tcl8.5/TkCmd/event.htm#M34