Thread Menubar ändern (8 answers)
Opened by Mako at 2007-12-06 13:11

styx-cc
 2007-12-06 15:03
#103510 #103510
User since
2006-05-20
533 Artikel
BenutzerIn

user image
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.

View full thread Menubar ändern