I have found an acceptable workaround for the problem. By using Tk::Pane the entire main window is scrollable and the scrollbars inside the ROText widget are still functional. The downside is that the widgets at the top of my window also scroll out of view. Since the main focus of the window is the long list of items I can live with this.

#! /usr/bin/perl -w use Tk; use Tk::Pane; require Tk::ROText; my $mw = MainWindow->new; $pane = $mw->Scrolled(Pane, -scrollbars => 'ow', -sticky => 'nswe', -gridded => 'y', -height => '800' ); $pane->Frame(); $pane->grid; $pos1 = $pane->ROText(-height => 7, -width => 20, -wrap => 'word')->gr +id ( $pos2 = $pane->ROText(-height => 7, -width => 20, -wrap => 'word +'), $pos3 = $pane->Scrolled('ROText', -height =>7, -width => 20, -wrap + => 'word', -scrollbars => 'oe'), $pane->Label(-height => 100, -width => 100,-text => "Photo" ), $pane->Button(-text => "Link"), -sticky => "nsew"); $pos1->tagConfigure('bold', -font => "Courier 10 bold", -justify => " +center", -spacing1 => 50); $pos2->tagConfigure('bold', -font => "Courier 10 bold", -justify => " +center", -spacing1 => 30); $pos1->insert('end', "Evening Gown", 'bold'); $pos2->insert('end', "Blue and black formal dress", 'bold'); $pos3->insert('end', " [Long description] "); MainLoop;

In reply to Re^2: -scrollbars is unknown option in windowCreate by Oberbee
in thread -scrollbars is unknown option in windowCreate by Oberbee

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.