Thread Probleme mit bind events: bind klappt nicht (12 answers)
Opened by Hellmaker at 2005-10-18 15:14

smallish
 2005-10-18 15:55
#44786 #44786
User since
2005-10-13
28 Artikel
BenutzerIn
[default_avatar]
Versuch mal ob das funktioniert:
Code: (dl )
1
2
3
4
5
6
7
8
9
use strict;
use warnings;
use Tk;

my $mw = MainWindow -> new();
my $text = $mw -> Text() -> pack();
$mw -> bind("Tk::Text", "<Alt-Key-o>" => sub { print "funktioniert" } );

MainLoop;


Du musst dich dabei natürlich im Text-Widget befinden sonst funktionierts nicht!

View full thread Probleme mit bind events: bind klappt nicht