Trenholmes 0 Newbie Poster

First thanks for taking the time to review my issue. I've been
banging my head against a wall the last 24 hours.

What I want to do is have a list of labels bound to a list of
particular events. I want to be able B1-Motion from one label to get
an event and while still using B1-Motion I want the 2nd label to
simultaneously catch the Enter event to get other information. From
the example listed below, I first grab option one with B1-Motion. The
output in the console is 'in option one'. While still holding down B1
and entering the second label the Enter event doesn't catch that my
mouse is within it's element and I never get the 'in option two'
output as long as I have B1 depressed. Is there a way to catch both
events at the same time? Thanks again for your advice!

from Tkinter import *

def p(text):
   print text
   return

root = Tk()

w = Label(root, text = 'option one', width=15, height=5, relief=GROOVE)
w.pack(side=TOP)
w.bind("<B1-Motion>", lambda e: p('in option one'))

x = Label(root, text = 'option two', width=15, height=5, relief=GROOVE)
x.pack(side=TOP)
x.bind("<Enter>", lambda e: p('in option two'))

root.mainloop()