The analogous Tk code works as expected.
Any Help or pointers would be greatly appreciated.
thanks in advance,
matt
-----------------%< snippity snip %<---------------
from Tkinter import *
def buttonFunc(*event):
print "this is a button"
def createWidgets(top):
f = Frame(top)
f.pack()
# a hello button
f.hi_there = Button(f, {'text': 'Hello'})
f.hi_there.pack({'side': 'left', 'padx' : '1i'})
root = Tk()
createWidgets(root)
root.bind_all("<Shift-Button-3>", buttonFunc)
root.mainloop()
-- ---------------------------------------------------------------------------- Matthew Conway University of Virginia Dept. of Computer Science Charlottesville, VA 22901 conway@Virginia.EDU ----------------------------------------------------------------------------