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

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::

Replies are listed 'Best First'.
Re^7: scrolling MListbox in Perl/tk
by runrig (Abbot) on Jul 17, 2009 at 20:15 UTC
    Thank you...I found this answer before I found the ActiveState forum answer. MListbox was driving me crazy.
Re^7: scrolling MListbox in Perl/tk
by Llew_Llaw_Gyffes (Scribe) on Dec 29, 2009 at 20:37 UTC

    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?