Hey Zen. Well, I saw that one actually, and tried it on my example above, which worked. Here is the code I used to test it:
#!/usr/local/bin/perl -w
use strict;
use Tk;
require Tk::DynaMouseWheelBind;
my $mw = new MainWindow;
my @scrollables = ('Tk::Pane');
$mw->DynaMouseWheelBind(@scrollables);
my $containerframe = $mw-> Frame()-> form(-left => '%0', -right => '%1
+00', -top => '%0', -bottom => '%100');
my $scrollpane = $containerframe->Scrolled('Pane', -scrollbars => 'oe'
+, -sticky => 'nsew')-> form(-left => '%0', -right => '%100', -top =>
+'%0', -bottom => '%100');
$scrollpane = $scrollpane->Subwidget('scrolled');
my $innerframe = $scrollpane->Frame()-> form(-left => '%0', -right =>
+'%100', -top => '%0', -bottom => '%100');
$innerframe-> Label(-text => "test\n")-> pack for 1 .. 112;
MainLoop;
However, when I try to incorporate it the exact same way into my working project I get errors:
error:window ".frame.notebook.page3.frame.frame.frame1.frame.pane" is
+n't packed
at C:/Perl/site/lib/Tk/Widget.pm line 1218, <PLUGINS> line
39.
at C:/Perl/site/lib/Tk/After.pm line 90
Tk::Error: window ".frame.notebook.page3.frame.frame.frame1.frame.pane
+" isn't pa
cked at C:/Perl/site/lib/Tk/Widget.pm line 1218, <PLUGINS> l
ine 39.
at C:/Perl/site/lib/Tk/After.pm line 90
Tk callback for pack
Tk::After::once at C:/Perl/site/lib/Tk/After.pm line 90
[once,[{},after#38,idle,once,[{},packscrollbars]]]
("after" script)
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
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, 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, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
Outside of code tags, you may need to use entities for some characters:
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.
|
|