tkinter listbox get(ACTIVE) method tkinter listbox get(ACTIVE) method tkinter tkinter

tkinter listbox get(ACTIVE) method


An item becomes active after you click on it—which means after your ListboxSelect method returns. So, you're printing out whatever was active before this click (meaning, generally, what you clicked last time).

Also, given that you refer to "selected" numerous times, I think what you want is the selected value(s), not the active one, so you should be asking for that.

For a listbox with selectmode=SINGLE or BROWSE (the default, what you have) listbox, you can fix both of these trivially. Just change this:

mylistbox.get(ACTIVE)

to:

mylistbox.get(mylistbox.curselection())

If you need to handle MULTIPLE or EXTENDED, then of course there are anywhere from 0 to 7 selections instead of exactly 1, so you need to do something like:

values = [mylistbox.get(idx) for idx in mylistbox.curselection()]print ', '.join(values)

While we're at it, I'm not sure why you were doing str((mylistbox.get(ACTIVE))), or even str(mylistbox.get(ACTIVE)). The result of mylistbox.get with a single index is going to be a string, the same one you inserted.


This seems to work for me:

mylistbox.get(ANCHOR)

Based on your code, it will print out the current item.


You could use this, it doesn't require the list box. So if you have multiple list boxes it will retrieve the value from any

from tkinter import*root=Tk()sizex = 600sizey = 400posx  = 40posy  = 20root.wm_geometry("%dx%d+%d+%d" % (sizex, sizey, posx, posy))itemsforlistbox=['one','two','three','four','five','six','seven']def CurSelet(event):    widget = event.widget    selection=widget.curselection()    picked = widget.get(selection[1])    print(picked)mylistbox=Listbox(root,width=60,height=10,font=('times',13))mylistbox.bind('<<ListboxSelect>>',CurSelet)mylistbox.place(x=32,y=90)for items in itemsforlistbox:    mylistbox.insert(END,items)root.mainloop()