in reply to Re: several tkx questions
in thread several tkx questions

That solves one problem. Listbox is the way to go for me, since it is more powerful than the Tk listbox.

Replies are listed 'Best First'.
Re^3: several tkx questions
by joeydb (Initiate) on Jul 11, 2009 at 06:04 UTC
    I also need some help. I am in desperate need of a Tkx equivalent of the Tk "Scrolled" object, as I am converting a program that used the old Perl/Tk library. Basically I need something where scrollbars allow me view a larger collection of widgets than I can otherwise -- an actual scrollable frame. The current Tkx examples I have seen so far have only worked for attaching scrollbars to text,canvas,tree, or list. Here is the code I wish to revise up to Tkx:
    $data_pane = $mw->Scrolled(Pane, Name => 'Data', -scrollbars => 'osoe', -sticky => 'n', -width => $mw_min_width, );
    I hope you guys can help me. Information of this sort on the Tkx library has been sparse. I've already checked ActiveState and Tkdocs to no avail. Thanks a ton in advance for helping me crack this problem.
      Tkx includes a widgetset with ScrolledWindow
      Tkx::package_require("BWidget"); # new_ScrolledWindow my $sw = $sp->new_ScrolledWindow();