in reply to Re: Listbox keeping the selection in 1 listbox
in thread Listbox keeping the selection in 1 listbox

but how do i select that new item? i have tried to use $canvas->activate(1) but it doesn't highlight the item.. nothing seems to be working.. haaay...
  • Comment on Re^2: Listbox keeping the selection in 1 listbox

Replies are listed 'Best First'.
Re^3: Listbox keeping the selection in 1 listbox
by psini (Deacon) on Jul 13, 2008 at 09:30 UTC

    I never used Tk::Listbox so this is little more than a guess but, based on a cursory read of POD, I think that the methods you need are listbox->activate($index) that makes the element of index $index the current element and listbox->selectionSet($index,$index) that put the element $index in the selection set.

    Obviously you need to know the index of the element you want to activate, so you'll probably have to search for it in the listbox itself.

    Rule One: "Do not act incautiously when confronting a little bald wrinkly smiling man."