Thread Menubar ändern
(8 answers)
Opened by Mako at 2007-12-06 13:11
Ne, Siechfried, so einfach ists nicht.
Geht nicht: Code (perl): (dl
)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 #!/usr/bin/perl -w use strict; use Tk; my $test = 123; my $mw = tkinit(); my $l1 = $mw->Label(-text => $test)->pack(); $mw->Button(-command => sub {chg_txt(\$test)} )->pack; MainLoop; sub chg_txt { my $test = shift; $$test = 'Testtext2'; $mw->update(); } Muss er bestimmt mit "configure" oder so machen Pörl.
|