Thread Mauszeiger über eine Linie verändern
(2 answers)
Opened by Gast at 2008-03-10 15:11
So bekommst Du innerhalb eines gewissen Gebiets um die Linie den Satz wechsel den Cursor ausgegeben. Der Rest sollte Fleißarbeit sein - und bitte die Lösung hier posten.
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 #!/usr/bin/perl use strict; use warnings; use Tk; my $mw = tkinit; my $canvas = $mw->Canvas->pack; $canvas->createLine(10,200,159,300); $canvas->Tk::bind( '<Motion>' => [\&select_cursor, Ev('x'), Ev('y')] ); MainLoop; sub select_cursor{ my ($c,$x,$y) = @_; my @coords = ($x-5, $y-5, $x+5, $y+5 ); my $item = $c->find('overlapping', @coords); if( $item and @$item ){ print "wechsel den Cursor"; } } OTRS-Erweiterungen (http://feature-addons.de/)
Frankfurt Perlmongers (http://frankfurt.pm/) -- Unterlagen OTRS-Workshop 2012: http://otrs.perl-services.de/workshop.html Perl-Entwicklung: http://perl-services.de/ |