You need to take note of which items are selected (by name), then find those names in the new ordered list, and select them.
use strict; use Tk; use Data::Dumper; my @data = (qw( ccc eee ddd aaa aaa ccc ddd ddd bbb ddd eee ggg fff)); my %seen; # Create & configure text widget... my $top = MainWindow->new; my $list = $top->Scrolled('Listbox')-> pack(-side=>'right', -fill=>'both', -expand =>1); my $ref; $ref = $top->repeat(700, \&addItem); sub addItem { my $item = shift(@data); if(!$item) { $ref->cancel; return }; print STDERR "$item\n"; # Selected items (by name) my @selected_items = map {$list->get($_)} $list->curselection; print "Selected items: @selected_items\n"; if(! $seen{$item}) { my @new_selection_order = sort keys %seen; # Map names to list position my %new_selection = map {($new_selection_order[$_] => $_)} 0.. +$#new_selection_order; $list->delete(0, 'end'); $list->insert('end', @new_selection_order); # Set selection(s) print "New indexes should be @new_selection{@selected_items +}\n"; $list->selectionSet($_) for @new_selection{@selected_items} +; } $seen{$item}++; } MainLoop();

Caution: Contents may have been coded under pressure.

In reply to Re: Sorted Realtime Tk Listbox by Roy Johnson
in thread Sorted Realtime Tk Listbox by cmv

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.