in reply to Tk: How do you control the height of a Scroll?

I would suggest you try manually using the set command, although it may be that your list is so short that Tk pads the white-space just to meet the built-in minimums for a scrollbar.

Try this:    $t->set(.05,.95);

You can find out what these values are right now by using     ($first, $last) = $t->get(); and then printing out the values returned.

- - arden.