in reply to Re^2: Perl Tk Scrollbar
in thread Perl Tk Scrollbar

What do you expect those attempts to accomplish? What are you expecting to happen?

Tk::Scrolled SYNOPSIS shows a different usage pattern than the one you're using

Replies are listed 'Best First'.
Re^4: Perl Tk Scrollbar
by PilotinControl (Pilgrim) on Nov 27, 2013 at 03:09 UTC

    What I am expecting to happen is when my data file reaches a certain viewing length the scroll bars will aide in viewing the data. To scroll up and down. I guess I am missing a length option? So far all the frame does is get larger when more data is being added instead of staying at a fixed height and width. Am I explaining it well enough to understand? Thanks.

      This is what the SYNOPSIS shows
      $whatever = $parent->Scrolled(Whatever ?,-scrollbars=>where? ?,...?);
      This is what you have
      $vall->Scrolled('Frame', -scrollbars => "ose",)->pack;
      You don't have $whatever, you create a frame, pack it, and ignore it, and you keep using the frames parent $vall

      If you want widgets in the scrolled frame, they have to be children of the scrolled frame