Thread Tk::Menu (5 answers)
Opened by Froschpopo at 2005-05-01 14:20

Froschpopo
 2005-05-01 14:20
#43900 #43900
User since
2003-08-15
2653 Artikel
BenutzerIn
[default_avatar]
ich hab nen Menü gebaut:
Code: (dl )
1
2
3
4
5
6
7
$config{Pulldown} = $mw->Menu(-tearoff => 0);
$config{Stat} = $config{Pulldown}->add(
'command',
-label => "Unterhaltung starten",
-command => sub {}
);
$config{Pulldown}->entryconfigure($config{Stat}, -state => 'disabled');

es liegt eindeutig an entryconfigure, aber was genau mache ich da falsch?

View full thread Tk::Menu