1
2
3
4
my $spinbox = $mw->Spinbox(-from => 1980, -to => 2037, -command => sub {
print $anzeige_jahr_w->get()})->pack();
call $spinbox->cget(-command);
2014-05-22T11:40:26 KeanIn diesem Thread: [Tk] Tk-Spinbox - Command ausführen
habe ich erfahren wie man einen Callback Command aus einem Widget auslesen und mit Tk-Bind mit einer Aktion ausführen kann.
Gibt es auch eine Möglichkeit diesen Callback so zu starten/auszuführen?
Ich habe dies mal ausprobiert, es gibt aber keinen Befehlt der Call heißt:
Code: (dl )1
2
3
4my $spinbox = $mw->Spinbox(-from => 1980, -to => 2037, -command => sub {
print $anzeige_jahr_w->get()})->pack();
call $spinbox->cget(-command);