Greg Wilson wrote: > > Hi. I've created an Entry widget using Tkinter, and would like a command > run when the user presses carriage return --- how do I do this? > Thanks, > Greg Bind your callback to the event '<Return>': entry.bind('<Return>', my_handler) def my_handler(event): print 'Got a "<Return>" event.' Doug