What's AUTOLOAD?
by Joe Tseng other posts by this author
Mar 28 2008 8:39AM messages near this date
RE: read date stamp on file
|
RE: What's AUTOLOAD?
I was following some examples online and wrote this small script:
======================================================================
use Tk;
use Tk::Tree;
my $mw = MainWindow-> new(-title => "Tree");
my $tree = $mw-> Tree()->pack(-fill => 'both', -expand => 1);
foreach (qw/orange purple orange.1 purple.1/) {
$tree-> add($_, -text => $_);
}
$tree-> autosetmode();
MainLoop;
======================================================================
I got this msg:
======================================================================
Failed to AUTOLOAD 'Tk::Tree::tixGetimage' at C:\..\tktest.pl line 10
======================================================================
What does this mean? I recently installed new Tk modules via PPM - could
that cause this?
- Joe
_______________________________________________
ActivePerl mailing list
ActivePerl@[...].com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs
Thread:
Joe Tseng
Wayne Simmons
|