Hi all,
Tkx is new in ActivePerl 5.10, and I can't find document how to create child widget in Tkx.
For example:
my $mw = Tkx::widget->new(".");
my $frame = $mw->new_labelframe()->g_pack();
Then I need to create a button in frame:
my $button = $frame->new_button( -text => "Button");
And there is the error: Can't call method "new_button" without a package or object reference
So how to indicate the path name of $frame?
Thanks for your help.