#################################### #testing new my @cursors = qw/ 12 24 48 96/; my $lb = $mw->Listbox(-selectmode => 'single', ); $lb->pack(-side => 'left', -fill => 'both'); $lb->insert('end', sort @cursors); $lb->bind('', sub { $mw->configure(-background => $lb->get($lb->curselection)); }); $lb->grid( -row => 10, -column => 2, -columnspan => 1);