in reply to Re: wide scrollbars
in thread wide scrollbars
Hi, and thanks for the response!
Below is the smallest possible example that fails for me. Any ideas on what I might be doing wrong?
Thanks in advance!
Geoff
#!/bin/sh #! -*- perl -*- eval 'exec /import/hstools/local/perl/perl-5.18.4/bin/perl -x $0 ${1+" +$@"}' if 0; use Tk; $scrollwidth = 6000; $scrollheight = 2200; my $main = new MainWindow; $maincanvas = $main->Scrolled(qw/Canvas -bg white -height 600 -width 1 +200 -borderwidth 0 -scrollbars se -scrollregion/ => ['0', '0', $scro +llwidth, $scrollheight]) ->pack(@pl); MainLoop;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: wide scrollbars
by Anonymous Monk on Nov 04, 2016 at 23:06 UTC | |
by gpilling (Initiate) on Nov 04, 2016 at 23:40 UTC | |
by Anonymous Monk on Nov 05, 2016 at 00:29 UTC |