in reply to Re^4: scrolling MListbox in Perl/tk
in thread scrolling MListbox in Perl/tk

First try upgrading to Tk-804.028

I'm not really a human, but I play one on earth Remember How Lucky You Are

Replies are listed 'Best First'.
Re^6: scrolling MListbox in Perl/tk
by Anonymous Monk on Sep 03, 2008 at 15:33 UTC
    I found the fix on the activestate forum:
    Go into the MListbox code, and replace all references of

    $w->can('SUPER::

    with

    $w->can('Tk::Listbox::

      I observe there are several references to SUPER:: that are NOT of the $w->can('SUPER::...') form:

      babylon5:root:~:4 # grep -n SUPER /usr/lib/perl5/site_perl/5.10.0/Tk/M +Listbox.pm 32: $w->SUPER::Populate($args); 89: $w->SUPER::Populate($args); 99: my (@ret) = $w->SUPER::configure(@_); 120: $w->SUPER::Populate($args); 334:# $w->SUPER::Populate($args);

      Should these also be changed?

      Thank you...I found this answer before I found the ActiveState forum answer. MListbox was driving me crazy.