So I have a listBox and a scrollbar, both in the same frame. I have them set up just as I do my text widgets, and they work just as they should. Here is how I have it:
self.urlscrollbar = Scrollbar(self.insidebuffer1) self.urlscrollbar.pack(side=RIGHT, fill=Y) self.diclistBox = Listbox(self.insidebuffer1, selectmode=MULTIPLE, yscrollcommand=self.urlscrollbar.set) self.diclistBox.pack(side=TOP, anchor=N, fill=BOTH) I am on a mac if it matters. But what happens is they show up, and when the list in the listbox is big enough, the bar turns blue like it is able to scroll; but it doesn't function. Any ideas? Did I leave something out? -- View this message in context: http://www.nabble.com/Problems-with-a-scrollbar-on-a-listbox-tp19044535p19044535.html Sent from the Python - tkinter-discuss mailing list archive at Nabble.com. _______________________________________________ Tkinter-discuss mailing list Tkinter-discuss@python.org http://mail.python.org/mailman/listinfo/tkinter-discuss