in reply to Tk::Pane widget size limit?
before the MainLoop so that the pane already starts scrolled right.$mw->after(100, sub { $pane->xview(moveto => 1) });
Or maybe
my $step = .05; my $i = 1; $mw->repeat(100, sub { $pane->xview(moveto => ++$i * $step) });
to see how the scrolling happens.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Tk::Pane widget size limit?
by jbuck (Novice) on Aug 23, 2021 at 23:18 UTC |