1. Check out Tk::ProgressBar. It should be pretty straight-forward (the POD has basic example code). Be sure to use Tk->DoOneEvent() to keep the window responsive and update the display.
  2. You need to bind a handler for keypresses on the list, then use some combination of DirTree->open() (see Tk::Tree), DirTree->selectionSet(), and DirTree->see() (see Tk::HList).
  3. You should be able to set up one or two container widgets and then either pack things left or right, or use a grid layout instead.

Note: Perldoc.com doesn't seem to have any Tk documentation, and neither does search.cpan.org seem to include the documentation for Tk::bind, Tk::pack, nor Tk::grid. Just do `perldoc Tk::bind` (etc) for those docs.

bbfu
Black flowers blossum
Fearless on my breath
Teardrops on the fire
Fearless on my breath


In reply to (bbfu) Re: simple Perl/Tk problems by bbfu
in thread simple Perl/Tk problems by blackadder

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.