in reply to Perl/TK: how to set defaults for the whole script?
If even this is not enough, you can subclass Scale and instantiate objects of the new class instead.my %Scale_defaults = ( -width => 10, -length => 200, -sliderlength => 16, -orient => 'horizontal', -borderwidth => 1, -cursor => 'hand2', -showvalue => 0 ); # ... my $s = $mainwindow->Scale(%Scale_defaults, -showvalue => 1); # override a default
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Perl/TK: how to set defaults for the whole script?
by perltux (Monk) on Oct 24, 2012 at 09:08 UTC |