in reply to several tkx questions

1- The horizontal scrollbar does not activate

Seems to be a bug

I don't recommend using ttk::treeview unless you know in advance that the tree items will not require more horizontal space than the assigned column width.

Replies are listed 'Best First'.
Re^2: several tkx questions
by momo33 (Beadle) on Jul 07, 2009 at 15:03 UTC
    That solves one problem. Listbox is the way to go for me, since it is more powerful than the Tk listbox.
      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();