All pastes #298063 Raw Edit

Untitled

public python v1 · immutable
#298063 ·published 2006-12-31 14:59 UTC
rendered paste body
import Tkinterapp = Tkinter.Tk()def pressed(event):    print "the button was pressed"def released(event):    print "the button was released"def command():    print "the button's command was invoked"b = Tkinter.Button(app, command=command)b.bind("<ButtonPress>", pressed)b.bind("<ButtonRelease>", released)b.pack()app.mainloop()