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

I inserted it in two locations I've tried

Replies are listed 'Best First'.
Re^3: Perl Tk Scrollbar
by Anonymous Monk on Nov 27, 2013 at 02:27 UTC
    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

      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