Thread MainWindow Events
(3 answers)
Opened by Gast at 2008-03-07 12:07
Das was Du als "aktiviert" siehst, dürfte das "FocusIn" sein:
Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 #!/usr/bin/perl use strict; use warnings; use Tk; my ($width,$height) = (300,400); my $mw = tkinit; $mw->geometry( $width . 'x' . $height ); $mw->bind('<FocusIn>', \&focus_in); MainLoop; sub focus_in{ print "aktiviert\n"; } 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/ |