Beefy Boxes and Bandwidth Generously Provided by pair Networks
good chemistry is complicated,
and a little bit messy -LW
 
PerlMonks  

Re: Perl/Tkx Mousewheel

by Crian (Curate)
on Mar 10, 2009 at 14:41 UTC ( [id://749615]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://749615]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (3)
As of 2024-04-20 01:37 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found