http://qs321.pair.com?node_id=749615


in reply to Perl/Tkx Mousewheel

In one of my programs i found this lines:

$mw->bind('<MouseWheel>', [ sub { my $wert = -($_[1]/120); $wert = '+' . $wert unless $wert =~ /^-/; animation_schalten($wert); }, Tk::Ev('D') ] );

Perhaps it helps?

Replies are listed 'Best First'.
Re^2: Perl/Tkx Mousewheel
by chiron (Novice) on Mar 10, 2009 at 14:50 UTC
    Using:
    $canvas->g_bind("<MouseWheel>", [ sub { my $wert = -($_[1]/120); $wert = '+' . $wert unless $wert =~ /^-/; print $wert . "\n"; }, Tkx::Ev('D') ]);
    just gives me '-0' all the time

      Note: I use Tk::Ev not Tkx::Ev. I don't know, but it might be a difference.